// "Simplify comparison" "true" fun foo(x: String?) { if (x == null) { } else { if (x == null) { bar() } } } fun bar() {}