mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
18 lines
264 B
Java
18 lines
264 B
Java
import java.util.*;
|
|
abstract class IX<T> {
|
|
/**
|
|
* @param t the param
|
|
*/
|
|
abstract void foo(T t){}
|
|
}
|
|
|
|
class XXC extends IX<List<String>> {
|
|
/**
|
|
* @param strings the param
|
|
*/
|
|
@Override
|
|
void foo(List<String> strings) {
|
|
|
|
}
|
|
}
|