aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0068.scala
blob: beb2c7c0abbd6666696307af02738c4b1de77f41 (plain) (blame)
1
2
3
4
5
6
class E {
  def f() = {
    val (_::l1) = List(1,2,3);
    l1.tail;
  }
}