blob: 57bbbfdc4c2b49d7b3cff80609e8a6aeebc9d9ef [file] [log] [blame]
// "Surround with null check" "true"
infix fun Int.op(arg: Int) = this
fun foo(arg: Int?) {
arg <caret>op 42
}