147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
11 lines
372 B
Kotlin
Vendored
11 lines
372 B
Kotlin
Vendored
// "Wrap with '?.let { ... }' call" "false"
|
|
// WITH_RUNTIME
|
|
// ACTION: Add non-null asserted (!!) call
|
|
// ACTION: Introduce import alias
|
|
// ACTION: Introduce local variable
|
|
// ACTION: Replace with safe (this?.) call
|
|
// ERROR: Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type String?
|
|
|
|
fun String?.foo() {
|
|
toLowerCase<caret>()
|
|
} |