tests: Update external tests (1.1.2-dev-393)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class LongR {
|
||||
operator fun contains(l : Long): Boolean = l == 5.toLong()
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
if (5 !in LongR()) return "fail 1"
|
||||
if (6 in LongR()) return "fail 2"
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user