2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / operator2.C
blob3587311271866273b8a2510f6bc90dfc31e26aee
1 // PR c++/28852
2 // { do-do compile }
4 struct A
6   operator int&(int);  // { dg-error "3:.A::operator int&\\(int\\). must have no arguments" }
7 };
9 A a;
10 int& i = a;  // { dg-error "initialization" }