mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
127 B
Kotlin
Vendored
10 lines
127 B
Kotlin
Vendored
// KT-3581
|
|
|
|
open class A(val result: String = "OK") {
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = object : A() {}
|
|
return a.result
|
|
}
|