summaryrefslogtreecommitdiff
path: root/test/disabled/run/t2946/ResponseCommon.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/disabled/run/t2946/ResponseCommon.scala')
-rw-r--r--test/disabled/run/t2946/ResponseCommon.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/disabled/run/t2946/ResponseCommon.scala b/test/disabled/run/t2946/ResponseCommon.scala
deleted file mode 100644
index fa9d8acccb..0000000000
--- a/test/disabled/run/t2946/ResponseCommon.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-trait ResponseCommon extends Parser {
- private[this] var paramsParser: Parser = null
- def withParamsParser(parser: Parser) = {paramsParser = parser; this}
-
- class Foo {
- println(paramsParser)
- }
-
- override abstract def parse(t: Any): Unit = t match {
- case ("params", value: List[_]) => value.foreach {paramsParser.parse(_)}
- case _ => super.parse(t)
- }
-}
-