OSDN Git Service

Add -mlzcnt.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / error20.C
1 // PR c++/34275
2 // { dg-do compile }
3
4 struct A                        // { dg-message "operator=|no known conversion" }
5 {
6   virtual A foo ();
7 };
8
9 void bar (A& a)
10 {
11   a.foo () = 0; // { dg-error "A::foo\\(\\) = 0" }
12   // { dg-message "candidate" "candidate note" { target *-*-* } 11 }
13 }