// "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() }