summaryrefslogtreecommitdiff
path: root/test/files/run/repl-parens.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-06-13 20:51:57 +0000
committerPaul Phillips <paulp@improving.org>2011-06-13 20:51:57 +0000
commitb6d1953b85bddc7ccd748fa8f8aa2b7d3eb1f194 (patch)
treeb39ca3818b4803af062b561bc5342f8a7334e718 /test/files/run/repl-parens.scala
parent32d2b15d5db3e9e582632cc8f995dcc362751d6a (diff)
downloadscala-b6d1953b85bddc7ccd748fa8f8aa2b7d3eb1f194.tar.gz
scala-b6d1953b85bddc7ccd748fa8f8aa2b7d3eb1f194.tar.bz2
scala-b6d1953b85bddc7ccd748fa8f8aa2b7d3eb1f194.zip
Test case for implicits which unwrap typeclasse...
Test case for implicits which unwrap typeclasses, something which must really live on the edge given the multiple ways we've busted it lately. Also some Array/signature and repl tests. No review.
Diffstat (limited to 'test/files/run/repl-parens.scala')
-rw-r--r--test/files/run/repl-parens.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/repl-parens.scala b/test/files/run/repl-parens.scala
index 3b2740837c..081db3606a 100644
--- a/test/files/run/repl-parens.scala
+++ b/test/files/run/repl-parens.scala
@@ -5,6 +5,10 @@ object Test extends ReplTest {
(2)
(2 + 2)
((2 + 2))
+ ((2 + 2))
+ ( (2 + 2))
+ ( (2 + 2 ) )
+5 ; ( (2 + 2 ) ) ; ((5))
(((2 + 2)), ((2 + 2)))
(((2 + 2)), ((2 + 2)), 2)
((((2 + 2)), ((2 + 2)), 2).productIterator ++ Iterator(3) mkString)