blob: 9630755749e81280405bdca60d4c774de8f58781 [file] [log] [blame]
package receiver_in;
public class TestReceiverWithStatic {
private static class ThisReceiver {
public void foo() {
bar();
baz();
}
public void bar() {
}
public static void baz() {
}
}
public void main() {
ThisReceiver a= new ThisReceiver();
/*]*/a.foo();/*[*/
}
}