blob: bd874395a9f5c853367cf00583a1b2921c9565e7 [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((x) -> {
new Foo<Integer>(x);
});
}
}