2013-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error45.C
blob7df8b13f469e93ca63480b87e10cc4b819d6c236
1 // PR c++/51429
2 // { dg-do compile }
4 struct A
6   void foo (double);
7   void foo (int);
8   A () { foo = 0; }     // { dg-error "invalid use of member function" }
9 };