mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
172 B
Kotlin
Vendored
14 lines
172 B
Kotlin
Vendored
package x
|
|
|
|
class Outer() {
|
|
companion object {
|
|
class Inner() {
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box (): String {
|
|
val inner = Outer.Companion.Inner()
|
|
return "OK"
|
|
}
|