mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
functional expressions: push down conflicts
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
interface Base {
|
||||
void bar();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
Base base = () -> {};
|
||||
}
|
||||
}
|
||||
|
||||
class Child implements Base {
|
||||
public void foo() {
|
||||
System.out.println("Hi there.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user