aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-08-24 15:07:14 +0200
committerMartin Odersky <odersky@gmail.com>2016-08-26 11:13:17 +0200
commit55ad7ebb5960ed7590610c777cce229f7241c0d3 (patch)
treeae2582bd26d7f97fa8cefd89e858a4808afc31f7 /tests/pending/pos
parentbdb425c57128c85fc3f7bd03b1906f55805d2194 (diff)
downloaddotty-55ad7ebb5960ed7590610c777cce229f7241c0d3.tar.gz
dotty-55ad7ebb5960ed7590610c777cce229f7241c0d3.tar.bz2
dotty-55ad7ebb5960ed7590610c777cce229f7241c0d3.zip
Make inherited inferred result type work for dependent methods
We did not properly rename parameter references before.
Diffstat (limited to 'tests/pending/pos')
-rw-r--r--tests/pending/pos/t7668.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/pos/t7668.scala b/tests/pending/pos/t7668.scala
deleted file mode 100644
index 222a13d03..000000000
--- a/tests/pending/pos/t7668.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-trait Space {
- type T
- val x: T
-}
-
-trait Extractor {
- def extract(s: Space): s.T
-}
-
-class Sub extends Extractor {
- def extract(s: Space) = s.x
-}