mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 07:20:25 +07:00
70232ecaa1
GitOrigin-RevId: 6f2da6bbdbc50708571177d6ff5f279a4fee8eb1
17 lines
232 B
Java
17 lines
232 B
Java
// "Replace with <>" "true"
|
|
interface I<T> {
|
|
I<T> then(T t);
|
|
}
|
|
class J<T extends String> {}
|
|
class MyTest {
|
|
|
|
<K> I<K> when(K p) { return null;}
|
|
|
|
|
|
|
|
void m(J<?> l){
|
|
|
|
when(l).then((J)new J<Str<caret>ing>());
|
|
}
|
|
|
|
} |