PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / pr65295.C
blob2fa4b05a22eb3c5fd04db8140d29ce3b31f975da
1 // { dg-do compile }
2 // { dg-options "-std=c++14" }
4 struct arr {
5     constexpr arr() : elem() { }
6     char elem[17];
7 };
9 constexpr 
10 arr f()
12     arr result;
13     return result;
16 constexpr arr a { f() };
18 int main()