5 lines
98 B
Plaintext
5 lines
98 B
Plaintext
// WITH_RUNTIME
|
|
|
|
fun foo(p: List<String?>) {
|
|
val v = p[0] ?: <caret>throw RuntimeException()
|
|
} |