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