blob: a4cb0a754fc2cc3d5134ffaa17134f6a58449813 [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();
}
}