aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/curried.scala
blob: a11a0652d7cfeeaf3eafba5166bb32fd67a1a174 (plain) (blame)
1
2
3
4
5
6
object UnCurryTest {

  def f(x: Int)(y: Int) = x + y

  f(1)(2)
}