summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-09-02 08:51:25 +0000
committerMartin Odersky <odersky@gmail.com>2006-09-02 08:51:25 +0000
commitbacd5d56f4ba1dc311cc68625535c270db93cb17 (patch)
treebab90c6d1463e64775f74fe8b1367f493ce9e3a5 /src/compiler/scala/tools/nsc/typechecker/Contexts.scala
parenta89814eaf326620f6b2b55535e9a45c8b9202419 (diff)
downloadscala-bacd5d56f4ba1dc311cc68625535c270db93cb17.tar.gz
scala-bacd5d56f4ba1dc311cc68625535c270db93cb17.tar.bz2
scala-bacd5d56f4ba1dc311cc68625535c270db93cb17.zip
fixed problems with implicits
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Contexts.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Contexts.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
index 4fa5f5b1ea..08a92bb703 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Contexts.scala
@@ -373,7 +373,7 @@ trait Contexts requires Analyzer {
override def toString() = tree.toString()
}
- class ImplicitInfo(val name: Name, pre: Type, val sym: Symbol) {
+ class ImplicitInfo(val name: Name, val pre: Type, val sym: Symbol) {
private var tpeCache: Type = null
def tpe: Type = {
if (tpeCache == null) tpeCache = pre.memberType(sym)