mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
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>
|
|
}
|
|
}
|