summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Types.scala8
-rw-r--r--test/files/pos/annotDepMethType.flags1
-rw-r--r--test/files/pos/annotDepMethType.scala7
3 files changed, 14 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
diff --git a/test/files/pos/annotDepMethType.flags b/test/files/pos/annotDepMethType.flags
new file mode 100644
index 0000000000..e1b37447c9
--- /dev/null
+++ b/test/files/pos/annotDepMethType.flags
@@ -0,0 +1 @@
+-Xexperimental \ No newline at end of file
diff --git a/test/files/pos/annotDepMethType.scala b/test/files/pos/annotDepMethType.scala
new file mode 100644
index 0000000000..b5e7cb9e8b
--- /dev/null
+++ b/test/files/pos/annotDepMethType.scala
@@ -0,0 +1,7 @@
+case class pc(calls: Any*) extends TypeConstraint
+
+object Main {
+ class C0 { def baz: String = "" }
+ class C1 { def bar(c0: C0): String @pc(c0.baz) = c0.baz }
+ def trans(c1: C1): String @pc(c1.bar(throw new Error())) = c1.bar(new C0)
+}