bolt/deps/llvm-18.1.8/clang/test/Index/USR/decl-context.cpp
2025-02-14 19:21:04 +01:00

14 lines
327 B
C++

// RUN: c-index-test core -print-source-symbols -- -std=c++20 %s | FileCheck %s
namespace ns {
namespace {
struct Foo {};
// CHECK: [[@LINE-1]]:8 | struct/C | Foo | c:decl-context.cpp@N@ns@aN@S@Foo
}
}
namespace ns2 {
namespace {
struct Foo {};
// CHECK: [[@LINE-1]]:8 | struct/C | Foo | c:decl-context.cpp@N@ns2@aN@S@Foo
}
}