repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
RISC-V: Do not inline when callee is versioned but caller is not
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
union2.C
blob
3a2d93b255633b1b5566a075c5915e622e294476
1
// PR c++/15938
2
// { dg-do compile }
3
// { dg-options "" }
4
5
typedef union
6
{
7
struct { int i; };
8
struct { char c; };
9
} A;
10
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" }