blob: 8597534df69ae4b728b6a5a0782252e9690bde5c [file] [log] [blame]
package p;
class A {
public void test() {
B.foo();
}
private class B {
private B() {
System.out.println("Constructor");
}
static void foo(){}
}
}