Files
kotlin-fork/idea/testData/intentions/ifNullToElvis/ThrowInBlock.kt.after
T

5 lines
98 B
Plaintext

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