blob: 468caa9d1eb606dbcbcbbb826b949858c2df2c90 [file] [log] [blame]
class Foo {
void foo() {
int x = 0;
int y = x = newMethod();
}
private int newMethod() {
int x;
return x = 1;
}
}