ed5046715598baba5b72eb8c761238d7bddebd77
[gcc.git] / gcc / testsuite / g++.dg / init / synth2.C
1 // PR c++/34180
2
3 struct G {
4 G(); // { dg-message "" "candidate" }
5 G(G&); // { dg-message "" "candidate" }
6 };
7
8 class A // { dg-error "" }
9 // { dg-message "candidate" "candidate note" { target *-*-* } 8 }
10 {
11 const G g;
12 };
13
14 int main()
15 {
16 A a;
17 A b = a; // { dg-message "required here|deleted" }
18 }