summaryrefslogtreecommitdiff
path: root/test/files/pos/sammy_scope.scala
blob: 9d35501a474ff12a161635c13593aaf6a6d71815 (plain) (blame)
1
2
3
4
5
6
7
8
// test synthesizeSAMFunction: scope hygiene
trait SamFun[T1, R] { self =>
  def apply(v1: T1): R

  // this should type check, as the apply ref is equivalent to self.apply
  // it shouldn't resolve to the sam's apply that's synthesized (that wouldn't type check, hence the pos test)
  def compose[A](g: SamFun[A, T1]): SamFun[A, R] = { x => apply(g(x)) }
}