bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/namespaces-top.h

26 lines
256 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
namespace N1 {
int& f(int);
}
namespace N2 {
int& f(int);
}
namespace N3 {
int& f(int);
}
namespace N12 { }
namespace N13 {
void f();
int f(int);
void (*p)() = &f;
}
namespace AddAndReexportBeforeImport {
int S;
}
namespace Empty {}