90b0ea73dc
#KT-30640 Fixed #KT-22412 Fixed
7 lines
167 B
Kotlin
Vendored
7 lines
167 B
Kotlin
Vendored
// FIX: Replace with 'requireNotNull()' call
|
|
// WITH_RUNTIME
|
|
fun test(foo: Int?) {
|
|
<caret>if (foo == null) {
|
|
throw IllegalArgumentException("test")
|
|
}
|
|
} |