2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / net3.C
blob7c89facdd7abb99d4dc0a110fc44486db4b8869b
1 // { dg-do assemble  }
2 // Here is another program from the net.
4 class BOOL {
5  public:
6   int val;
7   
8   BOOL(int i =0);
9   operator int();
12 BOOL& foo()
14   static BOOL status;
15   return status;