aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/nsdmi-const1.C
blob: b5b8dabbcecc70eb56e54cc55a14607c1d41c4cb (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/50707
// { dg-do compile { target c++11 } }

int g;

struct S {
   int const v=g;
};

S s;