KT-5087 Private members of Java classes should be marked as invisible, not unresolved

#KT-5087 fixed
This commit is contained in:
Evgeny Gerashchenko
2014-06-16 21:34:13 +04:00
parent cf5fe672de
commit 7fdd4a339e
13 changed files with 125 additions and 8 deletions
@@ -0,0 +1,19 @@
package test
public open class PrivateMembersInHierarchy : java.lang.Object {
public constructor PrivateMembersInHierarchy()
public open class Sub : test.PrivateMembersInHierarchy.Super {
public constructor Sub()
private final var field: kotlin.Int
invisible_fake final override /*1*/ /*fake_override*/ var field2: kotlin.Int
private open fun method(): kotlin.Unit
}
public open class Super : java.lang.Object {
public constructor Super()
private final var field: kotlin.Int
private final var field2: kotlin.Int
private open fun method(): kotlin.Unit
}
}