mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
test++
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import java.util.AbstractList;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class Genmeth {
|
||||
public void context() {
|
||||
Integer v1 = 0;
|
||||
AbstractList<String> v2 = new ArrayList<String>(0);
|
||||
int res = method(v1, v2);
|
||||
}
|
||||
|
||||
public <T, U extends List> int <caret>method(T t, U u) {
|
||||
return t.hashCode() + u.size();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user