Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b7f6d40b562cc05b0c88d1051ff42fe8a146ea5
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
kt46554.kt
blob: c5de294041937bfd4c4a7ed8de25309fe732d20b [
file
]
// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
var
result
=
"Fail"
OPTIONAL_JVM_INLINE_ANNOTATION
value
class
A
(
val value
:
String
)
{
constructor
()
:
this
(
"OK"
)
init
{
result
=
value
}
}
fun box
():
String
{
A
()
return
result
}