summaryrefslogtreecommitdiffstats
path: root/tests/pureJava/conflictingPackageNames/Java.java
blob: 77114f170ed0a4cbad43262d433b9878f884a230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class Java {
    public String lang() {
        throw new RuntimeException("String lang(): shouldn't have been called");
    }

    public static class lang {
        public static class String {
            public String() {
                throw new RuntimeException("new String(): shouldn't have been called");
            }
        }
        static String String() { return null; }
    }
}