summaryrefslogtreecommitdiff
path: root/test/pos/lambda.scala
blob: 187b3f9783d25ffa51ae796ccf7bf9e13bb461b1 (plain) (blame)
1
2
3
4
5
6
7
8
object 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);
}