mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
45 lines
345 B
C++
45 lines
345 B
C++
namespace A {
|
|
|
|
}
|
|
|
|
namespace B {
|
|
|
|
}
|
|
|
|
namespace C {
|
|
|
|
namespace D {
|
|
|
|
inline int f() { return 0; }
|
|
|
|
class E {
|
|
|
|
void g(int p) {
|
|
int a;
|
|
{
|
|
int b;
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
namespace B {
|
|
|
|
int x = C::D::f();
|
|
|
|
}
|
|
|
|
namespace std {
|
|
|
|
}
|
|
|
|
int globalInt;
|
|
|
|
void globalIntUser(void) {
|
|
extern int globalInt;
|
|
}
|