(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.mike/
net3.C
// { dg-do assemble  }
// Here is another program from the net.

class BOOL {
 public:
  int val;
  
  BOOL(int i =0);
  operator int();
};

BOOL& foo()
{
  static BOOL status;
  return status;
}