mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
13 lines
184 B
Java
13 lines
184 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;
|
|
}
|
|
} |