mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
10 lines
186 B
Kotlin
Vendored
10 lines
186 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class A(
|
|
val a: String = object {
|
|
override fun toString(): String = "OK"
|
|
}.toString()
|
|
)
|
|
|
|
fun box() : String {
|
|
return A().a
|
|
} |