summaryrefslogtreecommitdiff
path: root/test/files/run/lisp.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/lisp.scala')
-rw-r--r--test/files/run/lisp.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/lisp.scala b/test/files/run/lisp.scala
index f12196ca50..bf895f2349 100644
--- a/test/files/run/lisp.scala
+++ b/test/files/run/lisp.scala
@@ -287,7 +287,7 @@ object LispAny extends Lisp {
}
def asList(x: Data): List[Data] = x match {
- case y: List[Data] => y
+ case y: List[_] => y
case _ => lispError("malformed list: " + x)
}