blob: 815e2eabf91cb4295f54c3823a5e7fa78bec44d2 [file] [log] [blame]
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"
}