mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 01:25:40 +07:00
13 lines
186 B
Java
13 lines
186 B
Java
interface I {
|
|
boolean m(int a);
|
|
}
|
|
|
|
class A {
|
|
{
|
|
I predicate = (a) -> alwaysTrue(a, "");
|
|
}
|
|
|
|
private static boolean alwaysTrue(int a, String anObject) {
|
|
return true;
|
|
}
|
|
} |