summaryrefslogtreecommitdiff
path: root/test/files/neg/t421.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t421.scala')
-rw-r--r--test/files/neg/t421.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t421.scala b/test/files/neg/t421.scala
index 43f6c9dafd..9a327be896 100644
--- a/test/files/neg/t421.scala
+++ b/test/files/neg/t421.scala
@@ -2,7 +2,7 @@ object foo {
case class Bar(a:String, b:AnyRef, c:String*);
Bar("foo","meets","bar") match {
- case Bar("foo",_*) => error("huh?");
+ case Bar("foo",_*) => sys.error("huh?");
}
}