aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t443.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t443.scala')
-rw-r--r--tests/untried/pos/t443.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/untried/pos/t443.scala b/tests/untried/pos/t443.scala
index cdaefe9ec..f1f7ec258 100644
--- a/tests/untried/pos/t443.scala
+++ b/tests/untried/pos/t443.scala
@@ -3,12 +3,12 @@ object Test {
def lookup(): Option[Tuple2[String, String]] =
((null: Option[Tuple2[String, String]]) : @unchecked) match {
case Some((_, _)) =>
- if (true)
- Some((null, null))
- else
- lookup() match {
- case Some(_) => Some(null)
- case None => None
- }
+ if (true)
+ Some((null, null))
+ else
+ lookup() match {
+ case Some(_) => Some(null)
+ case None => None
+ }
}
}