aboutsummaryrefslogblamecommitdiff
path: root/tests/neg/i941.scala
blob: 2643c2546b2cccae759325b0cc5f59b55f660a8f (plain) (tree)
1
2
3
4
5
6
7
8
9








                                
object Test {

  def bar(tl: => String) = {
    val x = tl _ //error
    val y = x _ // error
    val s: String = x() // error
  }

}