2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / conversion9.C
blobaeda02816be9750eb53b26a197efb4ca2e1e4221
1 // { dg-do run  }
2 // PRMS Id: 8475
4 class SomeClass {
5 public:
6   operator int & () {
7     static int x;
8     return x;
9   }
10 } a;
12 int main (int, char**) {
13   return a + 0;