summaryrefslogtreecommitdiff
path: root/test/files/run/bug0325.check
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-01-22 17:51:40 +0000
committermichelou <michelou@epfl.ch>2008-01-22 17:51:40 +0000
commit2bb757ae597d57643e723a7c3279650cdd173b3d (patch)
tree8c0ec6ba9e93e4c910d12dc822b857a08463f4ea /test/files/run/bug0325.check
parentcb1daed658c64908503aa7b4c082a76ddd50c239 (diff)
downloadscala-2bb757ae597d57643e723a7c3279650cdd173b3d.tar.gz
scala-2bb757ae597d57643e723a7c3279650cdd173b3d.tar.bz2
scala-2bb757ae597d57643e723a7c3279650cdd173b3d.zip
applied path for #325, update scalac man pages
Diffstat (limited to 'test/files/run/bug0325.check')
-rw-r--r--test/files/run/bug0325.check15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/bug0325.check b/test/files/run/bug0325.check
new file mode 100644
index 0000000000..71d1f3feb5
--- /dev/null
+++ b/test/files/run/bug0325.check
@@ -0,0 +1,15 @@
+
+
+RichString split("x]") returned List(a]b) when expecting List(a, b)
+RichString split("&&") returned List(a&b) when expecting List(a, b)
+RichString split("\x") returned List(a\b) when expecting List(a, b)
+RichString split("[x") returned List(a[b) when expecting List(a, b)
+RichString split("^x") returned List(a^b) when expecting List(a, b)
+RichString split("x-z") returned List(a-b) when expecting List(a, b)
+
+RS split("x]") returned List(a]b) when expecting List(a, b)
+RS split("&&") returned List(a&b) when expecting List(a, b)
+RS split("\x") returned List(a\b) when expecting List(a, b)
+RS split("[x") returned List(a[b) when expecting List(a, b)
+RS split("^x") returned List(a^b) when expecting List(a, b)
+RS split("x-z") returned List(a-b) when expecting List(a, b)