Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
error6.C
blob: 7560dcfb51fa6eb38103e5ee321d1ee52c812283 [
file
] [
log
] [
blame
]
template
<
int
n
>
struct
tento
{
enum
{
value
=
10
*
tento
<
n
-
1
>::
value
};
};
struct
tento
<
0
>
{
// { dg-error "" }
enum
{
value
=
1
};
};
int
main
()
{
if
(
tento
<
4
>::
value
!=
10000
)
return
-
1
;
}