summaryrefslogtreecommitdiff
path: root/test/files/run/t3395.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3395.scala')
-rw-r--r--test/files/run/t3395.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t3395.scala b/test/files/run/t3395.scala
index b4990a1716..01cc431871 100644
--- a/test/files/run/t3395.scala
+++ b/test/files/run/t3395.scala
@@ -1,11 +1,11 @@
object Test {
def main(args: Array[String]): Unit = {
- Seq("") match {
+ Seq("") match {
case Seq("") => println("abc")
case Seq(_, _, x) => println(x)
}
-
- Seq(1, 2, "def") match {
+
+ Seq(1, 2, "def") match {
case Seq("") => println("abc")
case Seq(_, _, x) => println(x)
}