aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources-noncompilable/com/puppycrawl/tools/checkstyle/checks/coding/InputIllegalInstantiationLang.java
blob: fbf42087a54bf3ef6031ce4c509613e72a35cd74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package java.lang;

class Input {
    Boolean obj = new Boolean();
    Integer obj2 = new Integer();
}

class Boolean{}
class Integer{}

class Input2 {
	String a = new String();
}