23 lines
332 B
Kotlin
Vendored
23 lines
332 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// LANGUAGE: +ValueClasses
|
|
|
|
var result = "Fail"
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class A(val value: String) {
|
|
init {
|
|
class B {
|
|
init {
|
|
result = value
|
|
}
|
|
}
|
|
B()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
A("OK")
|
|
return result
|
|
}
|