blob: 6726f535dc605457e21f6e123515de4b0d920473 [file] [log] [blame]
package receiver_in;
public class TestStaticReceiver {
private static class StaticReceiver {
public static void foo() {
bar();
}
public static void bar() {
}
}
public void main() {
/*]*/StaticReceiver.foo();/*[*/
}
}