Added test for KT-2381 Can't resolve references to fields inherited from Java class when used Kotlin class is loaded from bytecode

#KT-2381 obsolete
This commit is contained in:
Evgeny Gerashchenko
2014-06-16 20:33:02 +04:00
parent b65f6e1e0e
commit cf5fe672de
4 changed files with 29 additions and 0 deletions
@@ -0,0 +1,13 @@
package test
public final class InheritJavaField : test.Super {
public constructor InheritJavaField()
public final override /*1*/ /*fake_override*/ var field: kotlin.Int
public open override /*1*/ /*fake_override*/ fun method(): kotlin.Int
}
public open class Super : java.lang.Object {
public constructor Super()
public final var field: kotlin.Int
public open fun method(): kotlin.Int
}