Clang Project

clang_source_code/test/Import/expr-with-cleanups/test.cpp
1// RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
2// CHECK: ExprWithCleanups
3// CHECK-SAME: 'RAII'
4// CHECK-NEXT: CXXBindTemporaryExpr
5
6void expr() {
7  f();
8}
9