OSDN Git Service

* c-decl.c (shadow_tag_warned, grokdeclarator): Handle _Alignas
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-const1.C
1 // PR c++/50707
2 // { dg-options -std=c++0x }
3
4 int g;
5
6 struct S {
7    int const v=g;
8 };
9
10 S s;