Clang Project

clang_source_code/test/Import/cxx-noexcept-expr/test.cpp
1// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s
2
3// CHECK: CXXNoexceptExpr
4// CHECK-NEXT: IntegerLiteral
5
6void expr() {
7  f();
8}
9