summaryrefslogtreecommitdiff
path: root/test/files/pos/t7377b.scala
blob: aeee800d57b752d3302c419a75d1b02a1871a8bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
object Test {
  List(1) match { case Nil => 0; case (x::xs) => x }

  case class Foo(a: Int)
  val FooAlias: Foo.type = Foo
  Foo(0) match { case FooAlias(_) => 0 }
  Foo(0) match { case Foo(_) => 0 }

  case class Bar()
  val BarAlias: Bar.type = Bar
  Bar() match { case BarAlias() => 0 }
  Bar() match { case Bar() => 0 }
}