mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
7 lines
135 B
Kotlin
Vendored
7 lines
135 B
Kotlin
Vendored
val Int.test: String get() = "test"
|
|
|
|
fun box(): String {
|
|
val x = "a ${1.test}"
|
|
return if (x == "a test") "OK" else "Fail $x"
|
|
}
|