summaryrefslogtreecommitdiff
path: root/test/files/run/t0485.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0485.check')
-rw-r--r--test/files/run/t0485.check30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/files/run/t0485.check b/test/files/run/t0485.check
new file mode 100644
index 0000000000..8e9f975de5
--- /dev/null
+++ b/test/files/run/t0485.check
@@ -0,0 +1,30 @@
+m1={20=30, 10=20}
+m2={10=20}
+m1 == m2 is false
+
+m1={20=30, 10=20}
+m2={10=20}
+m1 == m2 is false
+
+m1={10=20, 20=30}
+m2={10=20}
+m1 == m2 is false
+
+m1={10=20, 20=30}
+m2={10=20}
+m1 == m2 is false
+
+java.lang.CloneNotSupportedException: The underlying map doesn't implement the Cloneable interface
+
+m1=[20, 10]
+m2=[10]
+m1 == m2 is false
+
+m1=[10, 20]
+m2=[10]
+m1 == m2 is false
+
+m1=[10, 20]
+m2=[10]
+m1 == m2 is false
+