mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
17 lines
237 B
Java
17 lines
237 B
Java
class ExampleProblem {
|
|
<T> void asserting(T t, Simple<T> l){
|
|
}
|
|
|
|
<K> Simple<? super K> comp(K k){
|
|
return null;
|
|
}
|
|
|
|
public void main(String[] args) {
|
|
asserting(0, comp(0));
|
|
}
|
|
}
|
|
|
|
class Simple<SST>{
|
|
|
|
}
|