blob: e4a779259ac7fb9cf91646bea94e114b94b94dd6 [file] [log] [blame]
// "Add non-null asserted (!!) call" "true"
operator fun Int.get(row: Int, column: Int) = if (row == column) this else null
fun foo(arg: Int) = arg[42, 13]<caret>.hashCode()