Files
kotlin-fork/compiler/testData/codegen/box/localClasses/kt2873.kt
T
2018-08-09 14:22:50 +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()
}