blob: cd762136d0e0b6c923a35932672067ea972fb9c7 [file] [log] [blame]
// "Surround with null check" "true"
fun foo(arg: Int?, flag: Boolean) {
while (flag) if (arg != null) {
arg.hashCode()
}
}