mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-11 15:06:36 +07:00
b9525d143e
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>
|
|
}
|
|
}
|