new inference: capture implicit param types (IDEA-132716)

This commit is contained in:
Anna Kozlova
2015-12-03 17:10:15 +01:00
parent d056cd6e95
commit 4768643b60
3 changed files with 22 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
interface A<T> {
}
interface B<BT> {
void method(BT arg);
}
class Test {
public static void test() {
method1(Test::<error descr="Cannot resolve method 'method2'">method2</error>);
}
static <M> void method1(B<A<? super M>> arg) { }
static void method2(A<? super String> arg) { }
}