index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
SemaCXX
/
direct-initializer.cpp
blob: bb0aab6500a166884322f58e8316ec3d4257a78d (
plain
)
1
2
3
4
5
6
7
8
// RUN: clang -fsyntax-only %s
int
x
(
1
);
void
f
()
{
int
x
(
1
);
for
(
int
x
(
1
);;)
{}
}