WIP: default method reloading

This commit is contained in:
Andy Clement
2016-01-18 22:56:27 -08:00
parent f161db7d98
commit bfb55e4c0e
8 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package basic;
public interface DefaultMethodsI1A {
public default void test() {}
}