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

13 lines
205 B
Kotlin
Vendored

package test
interface Run {
fun run(): String
}
internal class A {
inline fun doSomething(): Run {
return object : Run {
override fun run(): String = "OK"
}
}
}