RISC-V: Do not inline when callee is versioned but caller is not
[official-gcc.git] / gcc / testsuite / g++.dg / init / union2.C
blob3a2d93b255633b1b5566a075c5915e622e294476
1 // PR c++/15938
2 // { dg-do compile }
3 // { dg-options "" }
5 typedef union
7   struct { int i; };
8   struct { char c; };
9 } A;
11 A a = { 0 };
12 A b = {{ 0 }};
13 A c = {{{ 0 }}};    // { dg-error "braces" "" { target c++98_only } }
14 A d = {{{{ 0 }}}};  // { dg-error "braces" }