summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Types.scala8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Types.scala b/src/compiler/scala/tools/nsc/symtab/Types.scala
index d4f322ed9f..8f72bdcde6 100644
--- a/src/compiler/scala/tools/nsc/symtab/Types.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Types.scala
@@ -3605,8 +3605,12 @@ A type's typeSymbol should never be inspected directly.
override def transform(tree: Tree): Tree = {
tree match {
case RefParamAt(pid) =>
- if(actuals(pid) isStable) mkAttributedQualifier(actuals(pid), tree.symbol)
- else {
+ // TODO: this should be simplified; in the stable case, one can probably
+ // just use an Ident to the tree.symbol. Why an existential in the non-stable case?
+ val actual = actuals(pid)
+ if(actual.isStable && actual.typeSymbol != NothingClass) {
+ mkAttributedQualifier(actuals(pid), tree.symbol)
+ } else {
val sym = existSymFor(pid)
(Ident(sym.name)
copyAttrs tree