OSDN Git Service

PR c++/50941
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / auto25.C
1 // PR c++/42056
2 // { dg-options -std=c++0x }
3
4 template<int> struct A
5 {
6   int a[auto(1)]; // { dg-error "invalid use of" }
7 };
8
9 template<int> void foo()
10 {
11   int a[auto(1)]; // { dg-error "invalid use of" }
12 }