90b0ea73dc
#KT-30640 Fixed #KT-22412 Fixed
7 lines
161 B
Kotlin
Vendored
7 lines
161 B
Kotlin
Vendored
// FIX: Replace with 'require()' call
|
|
// WITH_RUNTIME
|
|
fun test(b: Boolean) {
|
|
<caret>if (b) {
|
|
throw java.lang.IllegalArgumentException("test")
|
|
}
|
|
} |