bd38363077
To explicitly specify which test are failing
11 lines
141 B
Plaintext
Vendored
11 lines
141 B
Plaintext
Vendored
// "Replace with safe (?.) call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun main() {
|
|
var a = foo()?.length ?: 0
|
|
}
|
|
|
|
fun foo(): String? {
|
|
return ""
|
|
}
|