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.
27 lines
495 B
27 lines
495 B
// RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
|
|
// CHECK: FunctionDecl
|
|
// CHECK-SAME: S.cpp:1:1, col:38
|
|
// CHECK-NEXT: ConstAttr
|
|
// CHECK-SAME: col:32
|
|
|
|
// CHECK: IndirectFieldDecl
|
|
// CHECK-NEXT: Field
|
|
// CHECK-NEXT: Field
|
|
// CHECK-NEXT: PackedAttr
|
|
// CHECK-SAME: col:26
|
|
|
|
// CHECK: AttributedStmt
|
|
// CHECK-NEXT: LoopHintAttr
|
|
// CHECK-SAME: line:10:9
|
|
|
|
extern void f() __attribute__((const));
|
|
|
|
struct S;
|
|
|
|
void stmt();
|
|
|
|
void expr() {
|
|
f();
|
|
struct S s;
|
|
}
|