summaryrefslogtreecommitdiff
path: root/test/files/neg/t5426.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t5426.scala')
-rw-r--r--test/files/neg/t5426.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/t5426.scala b/test/files/neg/t5426.scala
index f2fb5cc12c..af0f981969 100644
--- a/test/files/neg/t5426.scala
+++ b/test/files/neg/t5426.scala
@@ -1,10 +1,10 @@
class A {
def f1 = Some(5) == 5
def f2 = 5 == Some(5)
-
+
val x1 = 5
val x2 = Some(5)
-
+
(x1 == x2)
(x2 == x1)
}