8 lines
144 B
Kotlin
Vendored
8 lines
144 B
Kotlin
Vendored
// "Replace with safe (?.) call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun bar() {
|
|
val fff: (() -> Int)? = { 1 }
|
|
var i: Int = 1
|
|
i = fff<caret>()
|
|
} |