blob: a2c7cf44c34d91efb68aa33299c913909f34b3d3 [file] [log] [blame]
import java.util.*;
class Test {
void aaa(Test p) { return 1; }
void test() {
c(Test::<caret>);
}
void c(Comparator<Test> c){}
}