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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
ASTMerge
/
generic-selection-expr
/
Inputs
/
generic.cpp
blob
8a97338ee7cbf3afabf8b74ca6f52d3434d33098
1
template
<
typename T
>
2
void
f
() {
3
T x
;
4
_Static_assert
(
_Generic
(
x
,
float
:
0
,
int
:
1
),
"Incorrect semantics of _Generic"
);
5
}