summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-06-25 08:48:44 +0000
committerMartin Odersky <odersky@gmail.com>2003-06-25 08:48:44 +0000
commit6b4b085c7ca3cf600c9909fba1f3b681f9e309a5 (patch)
tree8e8f034cae434809c66fb630b71f088175e6f146 /sources
parentce103c2f9538facf8bbfb816901742774bc7d211 (diff)
downloadscala-6b4b085c7ca3cf600c9909fba1f3b681f9e309a5.tar.gz
scala-6b4b085c7ca3cf600c9909fba1f3b681f9e309a5.tar.bz2
scala-6b4b085c7ca3cf600c9909fba1f3b681f9e309a5.zip
*** empty log message ***
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/symtab/Type.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/symtab/Type.java b/sources/scalac/symtab/Type.java
index 328ef7bacf..6ccedad1ce 100644
--- a/sources/scalac/symtab/Type.java
+++ b/sources/scalac/symtab/Type.java
@@ -2309,7 +2309,7 @@ public class Type implements Modifiers, Kinds, TypeTags {
Type this1 = unbox();
if (this1 != this) return this1;
else if (args.length == 0) return this;
- else return typeRef(pre, sym, Type.EMPTY_ARRAY);
+ else return typeRef(sym.owner().thisType(), sym, Type.EMPTY_ARRAY);
}
default: throw new ApplicationError();