repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
anon-union2.C
blob
31bb74fa99c3d6c66814966ffd3f392ad1f99505
1
// PR c++/52915
2
3
struct S {
4
int val;
5
S(int v) : val(v) {}
6
};
7
8
void f() {
9
union { S a; }; // { dg-error "constructor|no match" }
10
}