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.
16 lines
311 B
16 lines
311 B
4 months ago
|
// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s
|
||
|
|
||
|
// CHECK: DoStmt
|
||
|
// CHECK-NEXT: NullStmt
|
||
|
// CHECK-NEXT: CXXBoolLiteralExpr
|
||
|
// CHECK-SAME: true
|
||
|
|
||
|
// CHECK: DoStmt
|
||
|
// CHECK-NEXT: CompoundStmt
|
||
|
// CHECK-NEXT: CXXBoolLiteralExpr
|
||
|
// CHECK-SAME: false
|
||
|
|
||
|
void expr() {
|
||
|
f();
|
||
|
}
|