aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-05-04 12:09:52 +0200
committerMartin Odersky <odersky@gmail.com>2016-05-23 16:11:45 +0200
commit89540268e6c49fb92b9ca61249e46bb59981bf5a (patch)
tree5d7296175b7f27fd4243c61775bf262b84ea919f /test/dotc/tests.scala
parent039e20f3919d2ff4aa30a1f58314d0d0bff319c0 (diff)
downloaddotty-89540268e6c49fb92b9ca61249e46bb59981bf5a.tar.gz
dotty-89540268e6c49fb92b9ca61249e46bb59981bf5a.tar.bz2
dotty-89540268e6c49fb92b9ca61249e46bb59981bf5a.zip
Downwards comparisons for implicit search and overloading resolution
Compare selected contravariant arguments as if they were covariant. Which ones is explained in the doc comment for method `isAsSpecificValueType` in Applications.scala. This has the same motivation than what @paulp proposed around 2012. The solution is a bit different from the one proposed then because it only affects top-level parameters.
Diffstat (limited to 'test/dotc/tests.scala')
-rw-r--r--test/dotc/tests.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index 3528dfa72..4ada2d982 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -119,8 +119,8 @@ class tests extends CompilerTest {
@Test def neg_typedIdents() = compileDir(negDir, "typedIdents")
val negCustomArgs = negDir + "customArgs/"
- @Test def neg_typers = compileFile(negCustomArgs, "typers")(allowDoubleBindings)
- @Test def neg_overrideClass = compileFile(negCustomArgs, "overrideClass", List("-language:Scala2"))
+ @Test def neg_typers() = compileFile(negCustomArgs, "typers")(allowDoubleBindings)
+ @Test def neg_overrideClass = compileFile(negCustomArgs, "overrideClass", scala2mode)
@Test def neg_autoTupling = compileFile(negCustomArgs, "autoTuplingTest", args = "-language:noAutoTupling" :: Nil)
@Test def neg_i1050 = compileFile(negCustomArgs, "i1050", List("-strict"))
@Test def neg_i1240 = compileFile(negCustomArgs, "i1240")(allowDoubleBindings)