d78d4bc44c
#KT-1682 Fixed
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"
|
|
}
|