summaryrefslogtreecommitdiff
path: root/test/pos/lambda.scala
blob: 7e687df4ef55925cd0bb2e960f34edb627d28202 (plain) (blame)
1
2
3
4
5
6
7
8
module test {

  def apply[a,b](f: a => b): a => b  =  x: a => f(x);

  def twice[a](f: a => a): a => a  =  x: a => f(f(x));

  def main = apply@[Int,Int](twice@[Int](x: Int => x))(1);
}