summaryrefslogtreecommitdiff
path: root/test/files/neg/t7238.scala
blob: d42dc8d385cc8fc141fb8f70c6ca5a50d5e2224c (plain) (blame)
1
2
3
4
5
6
7
trait Main {
  trait C {
    def c(x: Any = 0)(bs: String*)
  }
  def c: C
  c.c()(Seq[Any](): _*)
}