01: package javahints; 02: 03: public class TestShortErrorsNewClass { 04: 05: public TestShortErrorsNewClass(String s) { 06: } 07: 08: public static void test() { 09: Object o = 1; 10: 11: new TestShortErrorsNewClass(o); 12: } 13: 14: }