Files
kotlin/compiler/testData/codegen/boxInline/anonymousObject/constructorVisibilityInLambda.2.kt
2015-10-21 17:12:17 +03:00

9 lines
132 B
Kotlin
Vendored

package test
internal class A {
inline fun doSomething(s: String): String {
return {
s
}()
}
}