mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-20 14:29:27 +00:00
17 lines
182 B
C++
17 lines
182 B
C++
|
// RUN: %llvmgxx -S %s -o - | grep cX
|
||
|
|
||
|
namespace C {
|
||
|
int c = 1;
|
||
|
namespace {
|
||
|
int cX = 6;
|
||
|
void marker2() {
|
||
|
cX;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
C::marker2();
|
||
|
return 0;
|
||
|
}
|