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

9 lines
126 B
Kotlin
Vendored

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