Files
kotlin-fork/backend.native/tests/external/codegen/box/innerNested/extensionToNested.kt
T
2017-03-13 15:31:46 +03:00

10 lines
129 B
Kotlin

class Test {
class Nested {
val value = "OK"
}
}
fun Test.Nested.foo() = value
fun box() = Test.Nested().foo()