blob: 7c89facdd7abb99d4dc0a110fc44486db4b8869b [file] [log] [blame]
// { 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;
}