blob: 808349e13b1af1c94cf611179bb3ff70ed492788 [file] [log] [blame]
public class A_testRawSubType_in {
void foo(Interface i){
Comparable c= i.getName();
}
}
interface Interface {
Comparable<String> getName();
}