summaryrefslogtreecommitdiff
path: root/test/files/run/repl-parens.scala
blob: 613bb6f6afb295b07d7fbfc73df0f8fe1910e2cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import scala.tools.partest.ReplTest

object Test extends ReplTest {
  // replace indylambda function names by <function0>
  override def normalize(s: String) = """\$\$Lambda.*""".r.replaceAllIn(s, "<function0>")

  def code = """
(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)

55 ; ((2 + 2)) ; (1, 2, 3)
55 ; (x: Int) => x + 1 ; () => ((5))

() => 5
55 ; () => 5
() => { class X ; new X }

def foo(x: Int)(y: Int)(z: Int) = x+y+z
foo(5)(10)(15)+foo(5)(10)(15)

List(1) ++ List('a')

  """.trim
}