Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
builtin1.C
blob: a5b7271cb73de8a52e83b3877457bef93327a0ad [
file
] [
log
] [
blame
]
// PR c++/26559
template
<bool>
struct
cond
;
template
<int>
struct
S
{
void
f
(
int
i
)
{
cond
<
__builtin_constant_p
(
i
)>();
}
};
S
<
1
>
s
;