Merge branch 'inferWildcards' of ssh://gohorb.ba-horb.de/bahome/projekt/git/JavaCompilerCore into inferWildcards

This commit is contained in:
Till Schnell 2021-05-26 21:20:51 +02:00
commit df6debec4f

View File

@ -8,7 +8,7 @@ class TestClassWildcardsLib
// return l2;
// }
public <T, S extends T> List<S> di(List<T> dd){
public <T> List<T> di(List<T> dd){
T t = dd.get(1);
return dd;
}