blob: 76cfe0f0b1a3607d4af871103e6e9f5b0e01f570 [file] [log] [blame]
class ExpandBoolean {
private boolean x;
private boolean y;
boolean foo()
{
x = y;
return x;
}
}