aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0039.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t0039.scala')
-rw-r--r--tests/pos/t0039.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pos/t0039.scala b/tests/pos/t0039.scala
index 652c606b0..7b51320e2 100644
--- a/tests/pos/t0039.scala
+++ b/tests/pos/t0039.scala
@@ -1,6 +1,6 @@
abstract class Extensible[A, This <: Extensible[A, This]](x: A, xs: This) { self: This =>
- def mkObj(x: A, xs: This): This;
+ def mkObj(x: A, xs: This): This;
}
class Fixed[A](x: A, xs: Fixed[A]) extends Extensible[A, Fixed[A]](x, xs) {
- def mkObj(x: A, xs: Fixed[A]) = new Fixed(x, xs);
+ def mkObj(x: A, xs: Fixed[A]) = new Fixed(x, xs);
}