Added static methods, nested classes and companion object from superclasses.

This commit is contained in:
Stanislav Erokhin
2015-10-01 21:00:44 +03:00
parent ace99f6c3f
commit d5dbc9638d
53 changed files with 2657 additions and 19 deletions
@@ -9,5 +9,5 @@ class X {
class B : X.A {
// INFO: {"checked": "true"}
fun foo(): Int = X.A.bar() + X.A.bar() + X.A.bar()
fun foo(): Int = bar() + bar() + bar()
}