summaryrefslogtreecommitdiff
path: root/test/files/pos/t3972.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3972.scala')
-rw-r--r--test/files/pos/t3972.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t3972.scala b/test/files/pos/t3972.scala
index 5dfc10fcef..d6cbb3dfb7 100644
--- a/test/files/pos/t3972.scala
+++ b/test/files/pos/t3972.scala
@@ -2,7 +2,7 @@ object CompilerCrash {
def main(args: Array[String]) {
args match {
case Array("a", a @ _*) => { } // The code compiles fine if this line is commented out or "@ _*" is deleted or this line is swapped for the next line
- case Array("b") => { } // The code compiles fine if this line is commented out
+ case Array("b") => { } // The code compiles fine if this line is commented out
case Array("c", c) => {
0 // The code compiles fine if this line is commented out
}