summaryrefslogtreecommitdiff
path: root/test/pending/pos/t5503.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t5503.scala')
-rw-r--r--test/pending/pos/t5503.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/pending/pos/t5503.scala b/test/pending/pos/t5503.scala
deleted file mode 100644
index 8a1925df1f..0000000000
--- a/test/pending/pos/t5503.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-trait A {
- type Type
- type MethodType <: Type
-
- val MethodType: MethodTypeExtractor = null
-
- abstract class MethodTypeExtractor {
- def unapply(tpe: MethodType): Option[(Any, Any)]
- }
-}
-
-object Test {
- val a: A = null
-
- def foo(tpe: a.Type) = tpe match {
- case a.MethodType(_, _) =>
- }
-} \ No newline at end of file