Files
kotlin-fork/backend.native/tests/external/codegen/boxInline/anonymousObject/constructorVisibilityInConstLambda.kt
T
2017-03-13 15:31:46 +03:00

20 lines
224 B
Kotlin

// FILE: 1.kt
package test
internal class A {
inline fun doSomething(): String {
return {
"OK"
}()
}
}
// FILE: 2.kt
import test.*
fun box(): String {
return A().doSomething()
}