aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t8300-patmat-b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t8300-patmat-b.scala')
-rw-r--r--tests/pending/pos/t8300-patmat-b.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/pending/pos/t8300-patmat-b.scala b/tests/pending/pos/t8300-patmat-b.scala
deleted file mode 100644
index 0acad4406..000000000
--- a/tests/pending/pos/t8300-patmat-b.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-// cf. pos/t8300-patmat-a.scala
-trait Universe {
- type Name >: Null <: AnyRef with NameApi
- trait NameApi
-
- type TermName >: Null <: TermNameApi with Name
- trait TermNameApi extends NameApi
-}
-
-object Test extends App {
- val u: Universe = ???
- import u._
-
- locally {
- val ScalaName: TermName = ???
- ??? match {
- case ScalaName => ???
- }
- }
-}