Files
kotlin/compiler/testData/codegen/box/innerNested/extensionToNested.kt
2014-09-09 20:42:35 +04:00

10 lines
129 B
Kotlin
Vendored

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