1df3bafbaf
#KT-31927
10 lines
164 B
Kotlin
Vendored
10 lines
164 B
Kotlin
Vendored
inline class Z(val s: String) {
|
|
val Int.s: Int get() = 42
|
|
}
|
|
|
|
fun box(): String {
|
|
if (Z("a").toString() == "Z(s=a)")
|
|
return "OK"
|
|
return "Fail"
|
|
}
|