blob: 969fc38fe3104075315f53603a0dba2fb158a954 [file] [log] [blame]
// "Surround with null check" "true"
operator fun Int.invoke() = this
fun foo(arg: Int?) {
if (arg != null) {
arg()
}
}