blob: 18239e4b0a44df999b1c33d7d61d2976f5ebf742 [file]
// Does not fail with TR.
public val z: Any = Z
private object Z
fun box(): String {
if (z is Z)
return "OK"
else
return "FAIL"
}