summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-24 20:42:27 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-05-24 20:42:27 +0200
commitbdf9195993caa3eee4f3be49428566323eaf4afd (patch)
treea11c4fe9634e3bf919d467267439a6da15225f1a /src/compiler/scala/tools/nsc/typechecker/Implicits.scala
parente948b39ca4df48b2acb0e972a2caf674c643a990 (diff)
downloadscala-bdf9195993caa3eee4f3be49428566323eaf4afd.tar.gz
scala-bdf9195993caa3eee4f3be49428566323eaf4afd.tar.bz2
scala-bdf9195993caa3eee4f3be49428566323eaf4afd.zip
SI-8617 Avoid rangepos crash for OptManifest materializer
The tree to create a `NoManifest` was unpositioned.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Implicits.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Implicits.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
index d87090fa46..73c3e6f016 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
@@ -1306,7 +1306,7 @@ trait Implicits {
}
def wrapResult(tree: Tree): SearchResult =
- if (tree == EmptyTree) SearchFailure else new SearchResult(tree, EmptyTreeTypeSubstituter, Nil)
+ if (tree == EmptyTree) SearchFailure else new SearchResult(atPos(pos.focus)(tree), EmptyTreeTypeSubstituter, Nil)
/** Materializes implicits of predefined types (currently, manifests and tags).
* Will be replaced by implicit macros once we fix them.