summaryrefslogtreecommitdiff
path: root/test/files/neg/virtpatmat_exhaust_compound.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/virtpatmat_exhaust_compound.scala')
-rw-r--r--test/files/neg/virtpatmat_exhaust_compound.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/virtpatmat_exhaust_compound.scala b/test/files/neg/virtpatmat_exhaust_compound.scala
index 386c7af98d..4ff04dd06a 100644
--- a/test/files/neg/virtpatmat_exhaust_compound.scala
+++ b/test/files/neg/virtpatmat_exhaust_compound.scala
@@ -10,7 +10,7 @@ case object O3 extends Base2
case object O4 extends Base with Base2
object Test {
- val a /*: Product with Serialiable with Base */ = if (true) O1 else O2
+ val a /*: Product with Serializable with Base */ = if (true) O1 else O2
a match {
case null =>
}