[Github] Label lldb-dap PRs (#125139)
[llvm-project.git] / clang / test / Import / struct-in-namespace / test.cpp
blobfd14d82d178c98bde1b60e9e2a106a5fa59cd4f4
1 // RUN: clang-import-test -import %S/Inputs/N1.cpp -import %S/Inputs/N2.cpp -import %S/Inputs/N3.cpp -expression %s
2 void expr() {
3 N::S s;
4 N::T t;
5 N::U u;
6 int d = s.a + t.b + u.c;