mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: adaefc912e115826280976b23adee38483ca1f71
9 lines
142 B
Java
9 lines
142 B
Java
import java.util.*;
|
|
|
|
class Test {
|
|
int aaa(Test p) { return 1; }
|
|
void test() {
|
|
Comparator<Test> r2 = Test::aaa;<caret>
|
|
}
|
|
}
|