mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
new inference: initial tests
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.List;
|
||||
|
||||
class B {
|
||||
void bar(List<String> x){
|
||||
foo(x);
|
||||
}
|
||||
<T> T foo(List<? super T> x){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user