Clean up some minor white space issues in trans-decl.c and trans-expr.c
[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 };