Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
nontype23.C
blob: dfda4fe2e595b1ece8112587e387e324c6820ece [
file
] [
log
] [
blame
]
// PR c++/48936
template
<
bool
C
>
int
foo
(
void
);
template
<
class
T
>
struct
S
{
static
const
unsigned
int
a
=
sizeof
(
T
);
enum
{
c
=
sizeof
(
foo
<(
a
==
0
)>
())
};
};
S
<int>
x
;