Files
kotlin-fork/compiler/testData/codegen/box/localClasses/kt2873.kt
T
2017-06-28 12:54:32 +03:00

11 lines
153 B
Kotlin
Vendored

fun foo() : String {
val u = {
class B(val data : String)
B("OK").data
}
return u()
}
fun box(): String {
return foo()
}