blob: 4e5d09b914dbcd6408091ae346d70e7fe54f1a22 [file] [log] [blame]
package simple_in;
public class TestSuper {
private static class A {
void foo() {
bar();
}
void bar() {
}
}
private static class B extends A {
void foo() {
/*]*/super.foo();/*[*/
}
}
}