summaryrefslogtreecommitdiff
path: root/test/files/run/t0485.check
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-02-15 11:30:27 +0000
committermichelou <michelou@epfl.ch>2008-02-15 11:30:27 +0000
commitfa3861528dab4b304b4f74e507af5f40a59705e4 (patch)
tree6e30bedcbc412c7adc25037a43332a1002837ffe /test/files/run/t0485.check
parent1aad4cb6517f4c63968d11c29f8dfebd8232a49c (diff)
downloadscala-fa3861528dab4b304b4f74e507af5f40a59705e4.tar.gz
scala-fa3861528dab4b304b4f74e507af5f40a59705e4.tar.bz2
scala-fa3861528dab4b304b4f74e507af5f40a59705e4.zip
fixed #485
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
+