blob: 13ffb3039c586665f168abe5a16e38f6345cf564 [file] [log] [blame]
// "Surround with null check" "true"
fun foo(x: String?) {
bar(<caret>x)
}
fun bar(s: String) = s.hashCode()