blob: d0c7e57c8d1350f7bbd3c546d999b725efea5c32 [file] [log] [blame]
class Container {
static class X {
boolean x = false;
void foo(String s, String t) {
newMethod();
newMethod();
}
private void newMethod() {
x = true;
}
}
}