blob: e6dbdcbe786ed59bd30c58bc4087d09abcb0e8fb [file] [log] [blame]
// Build don't link:
// 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;
}