aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t262.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t262.scala')
-rw-r--r--tests/pos/t262.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/t262.scala b/tests/pos/t262.scala
index ec6187b36..9f7686a8f 100644
--- a/tests/pos/t262.scala
+++ b/tests/pos/t262.scala
@@ -3,7 +3,7 @@ object O {
def f:A;
}
class B extends A {
- def f = if(1 == 2) new C else new D;
+ def f = if (1 == 2) new C else new D;
}
class C extends A {
def f = this;