blob: 8bef66441d0a9232e53930edaa29b66aab5805f6 [file] [log] [blame]
public class MyTest {
interface I {
void m(Integer s);
}
static class Foo<X extends Number> {
Foo(X x) { }
}
static void m(I s) {}
static {
m(Foo:<caret>:new);
}
}