summaryrefslogblamecommitdiff
path: root/test/files/pos/lambda.scala
blob: c9094992e8fcd6cbf7aca1c5f7919e8420a3116c (plain) (tree)
1
2
3
4
5
6
7
8
9

             
                                                        
 



                                                         
 
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);
}