summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-11-14 12:17:07 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-11-14 12:17:07 +0100
commitee6fbae3d069d8fe55b7a20756c04abcc9119bba (patch)
treef99910e432b9d3d4ba2b426ac4343b4ba7f45873 /src
parent96df73d994097e3318d003ddef00194b711289a3 (diff)
downloadscala-ee6fbae3d069d8fe55b7a20756c04abcc9119bba.tar.gz
scala-ee6fbae3d069d8fe55b7a20756c04abcc9119bba.tar.bz2
scala-ee6fbae3d069d8fe55b7a20756c04abcc9119bba.zip
correctly fails implicit search for invalid implicit macros
There was a rare corner case when implicit search wouldn’t discard an invalid implicit macro (e.g. the one with mismatching macro impl or the one with macro impl defined in the same compilation run) during typechecking the corresponding candidate in typedImplicit1. This is now fixed.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Implicits.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
index 01acbb8cc2..d31a8e81d4 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
@@ -664,6 +664,8 @@ trait Implicits {
if (context.hasErrors)
fail("hasMatchingSymbol reported error: " + context.firstError.get.errMsg)
+ else if (itree3.isErroneous)
+ fail("error typechecking implicit candidate")
else if (isLocal && !hasMatchingSymbol(itree2))
fail("candidate implicit %s is shadowed by %s".format(
info.sym.fullLocationString, itree2.symbol.fullLocationString))