aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/autoTuplingTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/autoTuplingTest.scala')
-rw-r--r--tests/pos/autoTuplingTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/autoTuplingTest.scala b/tests/pos/autoTuplingTest.scala
index c5bb84e95..7321a8382 100644
--- a/tests/pos/autoTuplingTest.scala
+++ b/tests/pos/autoTuplingTest.scala
@@ -3,7 +3,7 @@ object autoTupling {
val x = Some(1, 2) // error when running with -language:noAutoTupling
x match {
- case Some(a, b) => a + b // error // error // error when running with -language:noAutoTupling
+ case Some(a, b) => a + b // error // error when running with -language:noAutoTupling
case None =>
}
}