01: package javahints; 02: 03: public class TestShortErrorsMethodInvocation1 { 04: 05: public TestShortErrorsMethodInvocation1() { 06: Object o = 1; 07: 08: test(o); 09: } 10: 11: public void test(Integer i) { 12: } 13: }