llvm-for-llvmta/tools/clang/test/Import/struct-in-namespace/Inputs/N1.cpp

12 lines
91 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
namespace N {
struct S {
int a;
};
}
namespace N {
struct T {
int b;
};
}