Fix for KT-8204: java.lang.VerifyError for super method invocation in inline function

#KT-8204 Fixed
This commit is contained in:
Michael Bogdanov
2015-11-11 11:22:15 +03:00
parent 04f7805d52
commit 5a8ead0092
14 changed files with 154 additions and 55 deletions
@@ -0,0 +1,7 @@
public abstract class First {
protected static String TEST = "O";
protected static String test() {
return "K";
}
}