PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / other / anon-union2.C
blob31bb74fa99c3d6c66814966ffd3f392ad1f99505
1 // PR c++/52915
3 struct S {
4   int val;
5   S(int v) : val(v) {}
6 };
8 void f() {
9   union { S a; };               // { dg-error "constructor|no match" }