054e5fb5e7
#KT-1183 In Progress
8 lines
97 B
Kotlin
8 lines
97 B
Kotlin
class A {
|
|
class Nested {
|
|
val result = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() = (A::Nested)().result
|