41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
14 lines
158 B
Kotlin
14 lines
158 B
Kotlin
package x
|
|
|
|
class Outer() {
|
|
class object {
|
|
class Inner() {
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box (): String {
|
|
val inner = Outer.Inner()
|
|
return "OK"
|
|
}
|