aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t262.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 18:15:19 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 23:14:02 +0200
commitdad71ca7c5311c5741aecc497de83f02d5f35f6e (patch)
tree17d91106a693a98b2620d5c5eae52cd9cc67abac /tests/pos/t262.scala
parent74957b3b20aae3a0a2c7a41000c5a1424586f412 (diff)
downloaddotty-dad71ca7c5311c5741aecc497de83f02d5f35f6e.tar.gz
dotty-dad71ca7c5311c5741aecc497de83f02d5f35f6e.tar.bz2
dotty-dad71ca7c5311c5741aecc497de83f02d5f35f6e.zip
Ensure spaces after `if` in Dotty tests.
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;