m68k: replace reload_in_progress by reload_in_progress || lra_in_progress
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / constexpr-union4.C
blob3e44a1378f362829d0b91757ae02a892bbf4b8d8
1 // { dg-do compile { target c++14 } }
3 union U
5   int x = y;
6   char y;
7 };
9 constexpr U u = {}; // { dg-error "accessing uninitialized member" }