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