a6690e4e35
#KT-32797 Fixed
7 lines
136 B
Kotlin
Vendored
7 lines
136 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun test(flag: Boolean): Int {
|
|
return <caret>if (!flag) throw IllegalArgumentException() else 1
|
|
}
|
|
|