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