enable delegate for interfaces in 1.8

This commit is contained in:
Anna Kozlova
2014-12-23 19:32:29 +01:00
parent d40e94c1e8
commit f99580f6a5
5 changed files with 20 additions and 2 deletions
@@ -0,0 +1,3 @@
interface SAM {
void <caret>foo();
}
@@ -0,0 +1,7 @@
interface SAM {
default void foo() {
foo(false);
}
void foo(boolean b);
}