aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t8177a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t8177a.scala')
-rw-r--r--tests/untried/pos/t8177a.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/untried/pos/t8177a.scala b/tests/untried/pos/t8177a.scala
new file mode 100644
index 000000000..7e2cfb386
--- /dev/null
+++ b/tests/untried/pos/t8177a.scala
@@ -0,0 +1,9 @@
+// exercise coevolveSym
+trait Thing { type A; var p: A = _ }
+class AA[T](final val x: Thing { type A = T }) {
+ def foo: x.A = ???
+}
+
+class B extends AA[Int](null) {
+ override def foo: B.this.x.A = super.foo
+}