2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-57764.C
blobb26f4b50449bdbaa8d6f8100ebdeb34622d329d0
1 // PR c++/57764
2 // { dg-do compile { target c++11 } }
4 constexpr int x = 42;
5   
6 struct S
8   static constexpr int const & y = x;
9 };
11 constexpr int const & S::y;