Files
kotlin-fork/idea/testData/inspectionsLocal/redundantRequireNotNullCall/checkNotNull.kt
T
2019-02-06 11:10:27 +03:00

6 lines
103 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(s: String) {
println(1)
kotlin.<caret>checkNotNull(s)
println(2)
}