blob: 0a6eca3fc237179a38568fdc5c61729161be8881 [file] [log] [blame]
// INTENTION_TEXT: "Replace with '?: error(...)'"
// WITH_RUNTIME
fun foo(p: Array<String?>) {
val v = p[0] <caret>?: error("Should be not null")
}