summaryrefslogtreecommitdiff
path: root/test/files/run/repl-parens.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-07-03 22:01:46 +0000
committerPaul Phillips <paulp@improving.org>2011-07-03 22:01:46 +0000
commitf34c836cb67ed4c03b03218dff0a048466cbf13f (patch)
tree85762cb8af6fc79b703bb15a0918b32f2f44130a /test/files/run/repl-parens.check
parent552d7aa113dfda5c33c909b4a7874799a7ff1a3e (diff)
downloadscala-f34c836cb67ed4c03b03218dff0a048466cbf13f.tar.gz
scala-f34c836cb67ed4c03b03218dff0a048466cbf13f.tar.bz2
scala-f34c836cb67ed4c03b03218dff0a048466cbf13f.zip
Looking forward to working positions.
Diffstat (limited to 'test/files/run/repl-parens.check')
-rw-r--r--test/files/run/repl-parens.check11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/files/run/repl-parens.check b/test/files/run/repl-parens.check
index f41c2e74bd..2f56e5ddd4 100644
--- a/test/files/run/repl-parens.check
+++ b/test/files/run/repl-parens.check
@@ -36,16 +36,19 @@ scala>
scala> 55 ; ((2 + 2)) ; (1, 2, 3)
res10: (Int, Int, Int) = (1,2,3)
+scala> 55 ; (x: Int) => x + 1 ; () => ((5))
+res11: () => Int = <function0>
+
scala>
scala> () => 5
-res11: () => Int = <function0>
+res12: () => Int = <function0>
scala> 55 ; () => 5
-res12: () => Int = <function0>
+res13: () => Int = <function0>
scala> () => { class X ; new X }
-res13: () => java.lang.Object with ScalaObject = <function0>
+res14: () => java.lang.Object with ScalaObject = <function0>
scala>
@@ -53,6 +56,6 @@ scala> def foo(x: Int)(y: Int)(z: Int) = x+y+z
foo: (x: Int)(y: Int)(z: Int)Int
scala> foo(5)(10)(15)+foo(5)(10)(15)
-res14: Int = 60
+res15: Int = 60
scala>