Sign in
llvm
/
llvm-project
/
7dd2f1cc10902e632c0c78c75a30432a53eb59dc
/
.
/
clang
/
test
/
ASTMerge
/
generic-selection-expr
/
Inputs
/
generic.cpp
blob: 8a97338ee7cbf3afabf8b74ca6f52d3434d33098 [
file
] [
log
] [
blame
]
template
<
typename
T
>
void
f
()
{
T x
;
_Static_assert
(
_Generic
(
x
,
float
:
0
,
int
:
1
),
"Incorrect semantics of _Generic"
);
}