repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Github] Label lldb-dap PRs (#125139)
[llvm-project.git]
/
clang
/
test
/
Import
/
cxx-scalar-value-init
/
test.cpp
blob
596710911cc8f0dd1b2b04f79a1bf7b8786d8cbb
1
// RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
2
// CHECK: CXXScalarValueInitExpr
3
// CHECK-SAME: 'int'
4
5
// CHECK: CXXScalarValueInitExpr
6
// CHECK-SAME: 'float'
7
8
void
expr
() {
9
int
i
=
si
();
10
float
f
=
sf
();
11
}