tests: Update external tests (1.1.2-dev-393)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
// TARGET_BACKEND: JVM
|
||||
|
||||
fun box(): String {
|
||||
val a = HashSet<String>()
|
||||
a.add("live")
|
||||
a.add("long")
|
||||
a.add("prosper")
|
||||
val b = a.clone()
|
||||
if (a != b) return "Fail equals"
|
||||
if (a === b) return "Fail identity"
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user