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