blob: d2d4f2c030b8f79d89925fb6b2fc1a3ba02e4376 [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]!!.hashCode()