aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t8177a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t8177a.scala')
-rw-r--r--tests/pending/pos/t8177a.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/pending/pos/t8177a.scala b/tests/pending/pos/t8177a.scala
deleted file mode 100644
index 7e2cfb386..000000000
--- a/tests/pending/pos/t8177a.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-// 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
-}