Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jdk
/
kt1397.kt
blob: 17130d18c96ee3fb7ae3ebdc2e117013a1b95e4f [
file
]
class
IntArrayList
():
ArrayList
<
Int
>()
{
override
fun
get
(
index
:
Int
):
Int
=
super
.
get
(
index
)
}
fun box
():
String
{
val a
=
IntArrayList
()
a
.
add
(
1
)
a
[
0
]++
return
if
(
a
[
0
]
==
2
)
"OK"
else
"fail"
}