summaryrefslogtreecommitdiff
path: root/test/files/pos/trait-parents.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/trait-parents.scala')
-rw-r--r--test/files/pos/trait-parents.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/trait-parents.scala b/test/files/pos/trait-parents.scala
index f6a2688751..c5908cdcd9 100644
--- a/test/files/pos/trait-parents.scala
+++ b/test/files/pos/trait-parents.scala
@@ -6,11 +6,11 @@ trait Quux
object Test {
def f(x: Bip) = 1
def g1(x: Foo with Bip) = f(x)
-
+
def main(args: Array[String]): Unit = {
- f(new Bip with Foo { })
+ f(new Bip with Foo { })
f(new Foo with Bip { })
- g1(new Bip with Foo { })
+ g1(new Bip with Foo { })
g1(new Foo with Bip { })
}
}