mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 05:18:06 +07:00
GitOrigin-RevId: 05dfcfae2227fdab13a2133c62fe660b2c047f32
11 lines
130 B
Plaintext
11 lines
130 B
Plaintext
interface A {
|
|
void foo(int i);
|
|
}
|
|
class B {
|
|
B() {
|
|
System.out.println((A) i1 -> i1 + 42);
|
|
}
|
|
}
|
|
class C {
|
|
B b = new B();
|
|
} |