summaryrefslogtreecommitdiff
path: root/test/files/pos/sammy_inferargs.scala
blob: 10d9b4f0ddbb159366cb286f659588fe07e806b1 (plain) (blame)
1
2
3
4
5
6
trait Proc { def apply(): Unit }
class Test {
  val initCode = List[Proc]()
  initCode foreach { proc => proc() }

}