aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nsdmi-const1.C
blob: ddf9f04c580a3211063e5c4037718cc93fb438ad (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/50707
// { dg-options -std=c++0x }

int g;

struct S {
   int const v=g;
};

S s;