* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / other / operator2.C
blob4b952bf11eb98a809504531e846eb4482386537f
1 // PR c++/28852
2 // { do-do compile }
4 struct A
6   operator int&(int);  // { dg-error "void" }
7 };
9 A a;
10 int& i = a;  // { dg-error "initialization" }