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