OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / auto7.C
1 // PR c++/37965
2 // Negative test for auto
3 // { dg-options "-std=c++0x" }
4
5 auto i = 6;
6 auto j;                 // { dg-error "has no initializer" }
7
8 template<int> struct A
9 {
10   static auto k = 7;
11   static auto l;        // { dg-error "has no initializer" }
12   auto m;               // { dg-error "has no initializer" }
13 };