blob: 6c247f62a43ce6b790ed0b0736ccf7e1942e01b6 [file] [log] [blame]
interface I {
}
interface J extends I {
}
class IImpl implements I {
}
class JImpl implements J {
}
class X {
private static void <caret>method(int i, I intf) {
System.out.println("i = " + i + ", intf = " + intf);
}
{
J j = new JImpl();
method(0, j);
}
}