mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
functional expressions: allow to delete/change signature of default methods of functional interfaces
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
interface SAM {
|
||||
default void fo<caret>o(int i){}
|
||||
void bar(int i);
|
||||
}
|
||||
|
||||
class Test {
|
||||
|
||||
{
|
||||
SAM sam = (i) -> {};
|
||||
}
|
||||
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
interface SAM {
|
||||
void bar(int i);
|
||||
}
|
||||
|
||||
class Test {
|
||||
|
||||
{
|
||||
SAM sam = (i) -> {};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user