Files
kotlin-fork/idea/testData/quickfix/addExclExclCall/implicit2.kt
T

7 lines
124 B
Kotlin
Vendored

// "Add non-null asserted (!!) call" "true"
// WITH_RUNTIME
fun test(s: String?) {
s.run {
<caret>length
}
}