Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
resolve
/
kt28109.fir.kt
blob: ca66d8769dd598c8388edd57bfa6155ab28721e0 [
file
]
// WITH_STDLIB
class
Cell
{
operator
fun
get
(
s
:
Int
)
=
1
}
fun box
():
String
{
val c
=
Cell
()
(<!
UNRESOLVED_REFERENCE
!>
c
[
0
]<!>)++
return
"OK"
}