summaryrefslogtreecommitdiff
path: root/test/files/pos/t1545.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1545.scala')
-rwxr-xr-xtest/files/pos/t1545.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t1545.scala b/test/files/pos/t1545.scala
index 8cdd39660c..51df606da3 100755
--- a/test/files/pos/t1545.scala
+++ b/test/files/pos/t1545.scala
@@ -9,8 +9,8 @@ object Main extends App {
case None => 99
}
}
-
+
println (x (Foo (None))) // prints 99
println (x (Foo (Some ("foo")))) // prints 42
-
+
}