mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
11 lines
157 B
Kotlin
Vendored
11 lines
157 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// KT-3581
|
|
|
|
open class A(val result: String = "OK") {
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = object : A() {}
|
|
return a.result
|
|
}
|