summaryrefslogtreecommitdiff
path: root/test/files/pos/t4173.scala
blob: 33a713191a483d342242442f606b182ef4982f02 (plain) (blame)
1
2
3
4
object t4173 {
  def bar(a: Int = 0, b: Int = 0)(cs: Any*) = ()
  bar(b = 1)(Nil: _*)
}