summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/bug112606B.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pending/pos/bug112606B.scala b/test/pending/pos/bug112606B.scala
deleted file mode 100644
index 6dfaf4bf01..0000000000
--- a/test/pending/pos/bug112606B.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-package test;
-trait Test2 {
- case class Token(text : String);
- class KeywordToken(text : String) extends Token(text);
- def decode(tok : KeywordToken) = tok match {
- // constructor cannot be instantiated to expected type;
- // found : Test2.this.Token
- // required: Test2.this.KeywordToken
- case Token("final") => true;
- }
-}