Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
vt-34754.C
blob: c42fe49d90866ca98e17b177718cfa541520407c [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<
template
<int>
class
...
T
>
struct
A
{
void
foo
(
T
<
0
>);
// { dg-error "not expanded|T" }
void
bar
(
T
<
0
>);
// { dg-error "not expanded|T" }
};