11d3ead975
#KT-64590 Fixed
14 lines
239 B
Kotlin
Vendored
14 lines
239 B
Kotlin
Vendored
package lib
|
|
|
|
class Outer {
|
|
object Public : Private
|
|
|
|
private interface Private: Secret.EffectivelyPrivate
|
|
|
|
private object Secret {
|
|
interface EffectivelyPrivate {
|
|
fun result(): String = "OK"
|
|
}
|
|
}
|
|
}
|