Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/Kt1149.kt
T
Ilya Gorbunov 2257fa36ec Drop deprecations: text and system
Fix import in testData
Fix testData: replace removed method.
2016-01-22 05:54:38 +03:00

20 lines
410 B
Kotlin
Vendored

package test.regressions.kt1149
import java.util.ArrayList
public interface SomeTrait {
fun foo()
}
fun box(): String {
val list = ArrayList<SomeTrait>()
var res = ArrayList<String>()
list.add(object : SomeTrait {
override fun foo() {
res.add("anonymous.foo()")
}
})
list.forEach{ it.foo() }
return if ("anonymous.foo()" == res[0]) "OK" else "fail"
}