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