14 lines
171 B
Kotlin
Vendored
14 lines
171 B
Kotlin
Vendored
package x
|
|
|
|
class Outer() {
|
|
companion object {
|
|
class Inner() {
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val inner = Outer.Companion.Inner()
|
|
return "OK"
|
|
}
|