Files
kotlin-fork/compiler/testData/diagnostics/tests/PrivateFromOuterPackage.txt
T
Pavel V. Talanov 7585cbfe22 Remove check in visibilities that allowed access to privates of outer packages
It doesn't work for a while now in imports and is planned to be dropped with upcoming changes to private
2015-06-08 20:25:52 +03:00

21 lines
550 B
Plaintext
Vendored

package
package outer {
private fun a(): kotlin.Unit
private final class B {
public constructor B()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
package outer.p1 {
internal fun use(): kotlin.Unit
package outer.p1.p2 {
internal fun use(): kotlin.Unit
}
}
}