74c177fd26
#KT-19643 Fixed
8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo(p: List<String?>) {
|
|
val v = p[0]
|
|
<caret>if (v == null) {
|
|
throw RuntimeException()
|
|
}
|
|
} |