blob: 510ef675489193254ce39b59ae2e4d97259e393a [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>> {
<caret>
}