2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / overload8.C
blob3708b21ec6a2bffb0cb3dc6595534a379766f532
1 // { dg-do assemble  }
2 // Bug: g++ fails to catch the ambiguity below.
4 struct A {
5   operator int () { return 1; };
6   operator int &() { return 1; }; // { dg-error "" } 
7 };