Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
specialBuiltins
/
explicitSuperCall.kt
blob: 334b9521a4901351fb29511a1f9dc0483b5e6206 [
file
]
class
A
:
ArrayList
<
String
>()
{
override
val size
:
Int
get
()
=
super
.
size
+
56
}
fun box
():
String
{
val a
=
A
()
if
(
a
.
size
!=
56
)
return
"fail: ${a.size}"
return
"OK"
}