bd38363077
To explicitly specify which test are failing
6 lines
119 B
Kotlin
Vendored
6 lines
119 B
Kotlin
Vendored
// "Remove useless elvis operator" "true"
|
|
fun foo(a: String) {
|
|
val b : String = a <caret>?: "s"
|
|
}
|
|
|
|
/* IGNORE_FIR */ |