blob: 5b913bb531647ad2bb9c81160ce0fd0c647f4e19 [file] [log] [blame]
class Test1<U> {
public static void main(String[] args) {
Comparable<? extends Integer> c = new Comparable<Integer>() {
@Override
public int compareTo(Integer o) {
<selection>return 0;</selection>
}
};
}
}