summaryrefslogtreecommitdiff
path: root/test/files/pos/maxim1.scala
blob: 58916beb8a0fab99a9babd0d0c0a1b494b72722e (plain) (blame)
1
2
3
4
5
object test {
  def f(x: Int)(y: Int) = x + y;
  def y: Int => Int = f(2);
  def main = y(1);
}