mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
15 lines
230 B
Kotlin
Vendored
15 lines
230 B
Kotlin
Vendored
// !LANGUAGE: +ProperVisibilityForCompanionObjectInstanceField
|
|
|
|
class Outer {
|
|
private companion object {
|
|
val result = "OK"
|
|
}
|
|
|
|
val test: String
|
|
|
|
init {
|
|
test = result
|
|
}
|
|
}
|
|
|
|
fun box() = Outer().test |