summaryrefslogtreecommitdiff
path: root/test/files/run/trailing-commas.scala
blob: 6a7f1bb55fd63467095dc638eef9768c381dbf2f (plain) (blame)
1
2
3
4
5
6
7
object Test extends scala.tools.partest.ReplTest {
  def code = """
// test varargs in patterns
val List(x, y, _*,
) = 42 :: 17 :: Nil
"""
}