You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
221 B
9 lines
221 B
4 months ago
|
// RUN: clang-import-test -dump-ast -import %S/Inputs/NS.cpp -expression %s | FileCheck %s
|
||
|
|
||
|
// CHECK: `-NamespaceDecl
|
||
|
// CHECK-SAME: Inputs/NS.cpp:1:1, line:5:1> line:1:11 NS
|
||
|
|
||
|
void expr() {
|
||
|
static_assert(NS::A == 3);
|
||
|
}
|