aboutsummaryrefslogtreecommitdiff
path: root/tests/tasty/i982.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tasty/i982.scala')
-rw-r--r--tests/tasty/i982.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/tasty/i982.scala b/tests/tasty/i982.scala
deleted file mode 100644
index 838b250d9..000000000
--- a/tests/tasty/i982.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-trait Z {
- type Q
- def test: Q
-}
-class X(val x: Z)
-class Y(x: Z) extends X(x) {
- x.test
-}