Support default method invocation via super

#KT-5970 Fixed
This commit is contained in:
Michael Bogdanov
2015-05-05 16:04:16 +03:00
parent 3fbdf05921
commit 99cad4b43f
4 changed files with 54 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
public interface Test {
default String test() {
return "OK";
}
}