Files
kotlin-fork/compiler/testData/codegen/box/localClasses/kt2700.kt
T
Mikhael Bogdanov 4ef2f997ed Test for not reproduced KT-2700
#KT-2700 Can't Reproduce
2013-06-17 10:39:23 +04:00

17 lines
183 B
Kotlin

package a.b
trait Test {
fun invoke(): String {
return "OK"
}
}
private val a : Test = {
object : Test {
}
}()
fun box(): String {
return a.invoke();
}