Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
cond8.C
blob: a3bad7e7beda085340278cf5cc733bfe294cfa4e [
file
] [
log
] [
blame
]
// PR c++/51318
enum
{
e0
,
e1
};
template
<
bool
B
,
int
=
B
?
e0
:
e1
>
struct
A
{};
template
<
typename
T
>
struct
B
{
A
<
T
::
X
>
a
;
};