summaryrefslogtreecommitdiff
path: root/test/Import/attr/test.cpp
blob: c9b2d6ed3433ae43ff3b76f9aa87a0d7bb522d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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;
}