aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/bynamefuns.scala
blob: 5aa1df38df2cb7cfb04be305797909fe646ce583 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                           
object Test {

  type LF = (=> Int) => Int

  def f(x: => Int) = x * x

  val x: LF = f

  def g = 3

  f(11)
  x(g)
  x(11)

}