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