Files
kotlin-fork/idea/testData/inspectionsLocal/foldInitializerAndIfToElvis/ThrowInBlock.kt.after
T

5 lines
98 B
Plaintext
Vendored

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