blob: ed6bc376e368e70427912fb3aa465817e21209f5 [file] [log] [blame]
package javahints;
public class TestShortErrorsNewClass {
public TestShortErrorsNewClass(String s) {
}
public static void test() {
Object o = 1;
new TestShortErrorsNewClass(o);
}
}