Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
kt11117.kt
blob: e751be9c18879920ed3c1a5c7d10abbd3a39d028 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
class
A
(
val value
:
String
)
fun A
.
test
():
String
{
val o
=
object
{
val z
:
String
init
{
val x
=
value
+
"K"
z
=
x
}
}
return
o
.
z
}
fun box
():
String
{
return
A
(
"O"
).
test
()
}