mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 08:55:34 +07:00
14 lines
186 B
Java
14 lines
186 B
Java
interface I {
|
|
boolean m(int a);
|
|
}
|
|
|
|
class A {
|
|
{
|
|
I predicate = A::alwaysTrue;
|
|
}
|
|
|
|
private static boolean alwaysTrue(int a) {
|
|
<selection>""</selection>
|
|
return true;
|
|
}
|
|
} |