[Github] Label lldb-dap PRs (#125139)
[llvm-project.git] / clang / test / Import / cxx-scalar-value-init / test.cpp
blob596710911cc8f0dd1b2b04f79a1bf7b8786d8cbb
1 // RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
2 // CHECK: CXXScalarValueInitExpr
3 // CHECK-SAME: 'int'
5 // CHECK: CXXScalarValueInitExpr
6 // CHECK-SAME: 'float'
8 void expr() {
9 int i = si();
10 float f = sf();