blob: 92396e43767a80bd5cd2d35a862c6bef0b346b2a [file] [log] [blame]
package javahints;
public class TestShortErrorsMethodInvocation1 {
public TestShortErrorsMethodInvocation1() {
Object o = 1;
test(o);
}
public void test(Integer i) {}
}