OSDN Git Service

PR c++/55058
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / operator2.C
1 // PR c++/28852
2 // { do-do compile }
3
4 struct A
5 {
6   operator int&(int);  // { dg-error "void" }
7 };
8
9 A a;
10 int& i = a;  // { dg-error "initialization" }