blob: ecc4165f3d028d22acea5fef7a564b6514ba97ed [file] [log] [blame]
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) {
}
}