mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
11 lines
143 B
Kotlin
Vendored
11 lines
143 B
Kotlin
Vendored
// "Simplify comparison" "true"
|
|
fun foo(x: String?) {
|
|
if (x == null) {
|
|
|
|
}
|
|
else {
|
|
if (<caret>x == null) {
|
|
|
|
}
|
|
}
|
|
} |