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,9 @@
package basic;
public class DefaultMethodsC2A implements DefaultMethodsI2A {
public static int run() {
DefaultMethodsC2A instance = new DefaultMethodsC2A();
return 42;
}
}