aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-12-22 14:06:01 +0100
committerMartin Odersky <odersky@gmail.com>2015-12-22 14:06:01 +0100
commit24ef49b2aba670aa1ad9211c05f7f511e6eb7ed6 (patch)
tree94587d3a87c3fb50e0488db28a5d4bfe0731ea65 /tests
parent08e3f7688c2364e7f6760b8be35cd4ea6b330a10 (diff)
downloaddotty-24ef49b2aba670aa1ad9211c05f7f511e6eb7ed6.tar.gz
dotty-24ef49b2aba670aa1ad9211c05f7f511e6eb7ed6.tar.bz2
dotty-24ef49b2aba670aa1ad9211c05f7f511e6eb7ed6.zip
Fix off by 2 error for symbol positions
Diffstat (limited to 'tests')
-rw-r--r--tests/neg/t0654.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/neg/t0654.scala b/tests/neg/t0654.scala
deleted file mode 100644
index 0d0f2f7de..000000000
--- a/tests/neg/t0654.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-object Test {
- class Foo[T]
- type C[T] = Foo[_ <: T] // error: parameter type T of type alias does not appear as type argument of the aliased class Foo
- val a: C[AnyRef] = new Foo[AnyRef]
-}