Files
kotlin/compiler/testData/codegen/boxInline/anonymousObject/constructorVisibilityInLambda.kt
2016-02-27 15:40:05 +03:00

20 lines
234 B
Kotlin
Vendored

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