22 lines · cpp
1// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s2 3// CHECK: WhileStmt4// CHECK-NEXT: CXXBoolLiteralExpr5// CHECK-NEXT: NullStmt6 7// CHECK: WhileStmt8// CHECK-NEXT: CXXBoolLiteralExpr9// CHECK-NEXT: CompoundStmt10 11// CHECK: WhileStmt12// CHECK-NEXT: DeclStmt13// CHECK-NEXT: VarDecl14// CHECK-NEXT: CXXBoolLiteralExpr15// CHECK-NEXT: ImplicitCastExpr16// CHECK-NEXT: DeclRefExpr17// CHECK-NEXT: NullStmt18 19void expr() {20 f();21}22