Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
kt2202.kt
blob: c2eab1f2f5685196e573ecd2119c06f8e23a6aec [
file
] [
log
] [
blame
]
// KT-2202 Wrong instruction for invoke private setter
class
A
{
private
fun f1
()
{}
fun foo
()
{
f1
()
}
}
class
B
{
var
foo
=
1
private
set
(
value
)
{
field
=
value
}
fun foo
()
{
foo
=
2
}
}
// 0 INVOKEVIRTUAL
// 2 INVOKESPECIAL [AB]\.