a6690e4e35
#KT-32797 Fixed
4 lines
122 B
Kotlin
Vendored
4 lines
122 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test(foo: Int?) {
|
|
<caret>if (foo == null) throw IllegalArgumentException("test") else println(1)
|
|
} |