Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / other / error20.C
blobf3b17aa196a36640947f7ee1ec93a4992173862a
1 // PR c++/34275
2 // { dg-do compile }
4 struct A                        // { dg-message "operator=|no known conversion" }
6   virtual A foo ();
7 };
9 void bar (A& a)
11   a.foo () = 0; // { dg-error "A::foo\\(\\) = 0" }
12   // { dg-message "candidate" "candidate note" { target *-*-* } 11 }
13 }