summaryrefslogtreecommitdiff
path: root/test/files/neg/t5357.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t5357.scala')
-rw-r--r--test/files/neg/t5357.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t5357.scala b/test/files/neg/t5357.scala
index 369a5568a4..6a52283dd6 100644
--- a/test/files/neg/t5357.scala
+++ b/test/files/neg/t5357.scala
@@ -1,7 +1,7 @@
trait M
case class N() extends M {
- def mytest(x: M) = x match {
+ def mytest(x: M) = x match {
case A: N => 1
case _ => 0
}