summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/refactoring/moveInner/constructorUtilClassVisibility/before/p/A.java
blob: 8597534df69ae4b728b6a5a0782252e9690bde5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package p;

class A {
    public void test() {
        B.foo();
    }

    private class B {
        private B() {
            System.out.println("Constructor");
        }

        static void foo(){}
    }
}