mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
132 B
Plaintext
14 lines
132 B
Plaintext
interface Pair<A extends String> {
|
|
A get();
|
|
}
|
|
|
|
class B {
|
|
|
|
{
|
|
Pair<?> p = null;
|
|
String v = p.get();
|
|
}
|
|
}
|
|
|
|
|