smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / OverloadedMethods.java
blob8ad289aba4bbd5b60b0cb6acd27ed4069bc3e657
1 interface Comparable<T extends Comparable<T>> {}
2 class List<T> {}
3 class Collections {
4 static <T extends Comparable<? super T>> void sort(List<T> list) {}
5 static <T> void sort(List<T> list, Comparator<? super T> c) {}
8 class Foo implements Comparable<Foo> {
9 public static void main(String[] args){
10 List<Foo> list;
11 Collections.sort(l<caret>)