aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/selftypes.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/selftypes.scala')
-rw-r--r--tests/pos/selftypes.scala18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/pos/selftypes.scala b/tests/pos/selftypes.scala
index 243405f77..5180419d1 100644
--- a/tests/pos/selftypes.scala
+++ b/tests/pos/selftypes.scala
@@ -1,20 +1,20 @@
object selftypes {
-
+
trait A { self: AB =>
-
+
type AA = List[this.BX]
-
+
class AX
-
+
}
-
+
trait B { self: AB =>
-
+
type BB = AA
-
+
class BX
}
-
+
class AB extends A with B
-} \ No newline at end of file
+}