fa1f3871c0
#KT-29113 Fixed
11 lines
169 B
Kotlin
Vendored
11 lines
169 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
class Test {
|
|
var s: String? = null
|
|
|
|
fun test() {
|
|
if (s != null) {
|
|
<caret>requireNotNull(s)
|
|
}
|
|
}
|
|
} |