mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 20:50:48 +07:00
12 lines
176 B
Plaintext
12 lines
176 B
Plaintext
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
public class Main {
|
|
|
|
class B<T extends Collection> {}
|
|
|
|
public void someMethod() {
|
|
B<List> b = new B<List>();
|
|
}
|
|
}
|