// FIX: "Replace with '?: error(...)'" // WITH_RUNTIME class C { fun error(message: String) { } fun foo(p: Array) { val v = p[0] ?: kotlin.error("message") } }