summaryrefslogtreecommitdiff
path: root/test/files/pos/t758.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t758.scala')
-rw-r--r--test/files/pos/t758.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/pos/t758.scala b/test/files/pos/t758.scala
index 160bf37172..44769d54f1 100644
--- a/test/files/pos/t758.scala
+++ b/test/files/pos/t758.scala
@@ -1,7 +1,7 @@
trait A { type T; type M >: T }
-trait B extends A {
- val x : String;
- val u : A { type T = B.this.T } ;
- type T = x.type;
- type M = u.M
+trait B extends A {
+ val x : String;
+ val u : A { type T = B.this.T } ;
+ type T = x.type;
+ type M = u.M
}