Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
expressions
/
unsafeCall5.kt.after
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
()