mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
142 B
Plaintext
13 lines
142 B
Plaintext
interface A {
|
|
void foo(int i);
|
|
}
|
|
class B {
|
|
B() {
|
|
System.out.println((A) i1 -> i1 + 42);
|
|
}
|
|
}
|
|
class C {
|
|
{
|
|
B b = new B();
|
|
}
|
|
} |