summaryrefslogtreecommitdiff
path: root/test/files/run/t7171.scala
blob: e0a1192228c4a70117e6e8742b65f58c525389fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
trait T {
  final case class A()

  // Was:
  // error: scrutinee is incompatible with pattern type;
  // found   : T.this.A
  // required: T#A
  def foo(a: T#A) = a match {
    case _: A => true; case _ => false
  }
}

object Test extends App {
  val t1 = new T {}
  val t2 = new T {}
  val a1 = new t1.A()
  val a2 = new t1.A()
  assert(t1.foo(a1))
  // as noted in the unchecked warning (also tested in the corresponding neg test),
  // the outer pointer isn't checked
  assert(t1.foo(a2))
}