blob: 658bd429cfc06c3327243ce5e1defeb6ca1eb68f [file] [log] [blame]
public class PrimitiveDotClass {
void test() {
doStuff(int.class);
doStuff(int[].class);
}
void doStuff(Class<?> cl) {}
}