Files
2018-09-12 09:49:25 +03:00

14 lines
242 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1288
package foo
interface AL {
fun get(index: Int): Any? = null
}
class SmartArrayList() : AL {
}
fun box(): String {
val c = SmartArrayList()
return if (null == c.get(0)) return "OK" else "fail"
}