summaryrefslogtreecommitdiff
path: root/test/files/run/t5943a1.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-09-17 13:32:51 +1000
committerJason Zaugg <jzaugg@gmail.com>2015-09-22 08:33:08 +1000
commite265373660e4727be6fcc6104d7a722ca662b53b (patch)
tree63f924b6445e4b0f74c6d4b1bd35be6a0aa8fb0e /test/files/run/t5943a1.check
parent76269ca7a63848aee1f141da75be8ca436bf9e6c (diff)
downloadscala-e265373660e4727be6fcc6104d7a722ca662b53b.tar.gz
scala-e265373660e4727be6fcc6104d7a722ca662b53b.tar.bz2
scala-e265373660e4727be6fcc6104d7a722ca662b53b.zip
SI-9473 Cleaner references to statically owned symbols
Ever wonder why `identity("")` typechecks to `scala.this.Predef.identity("")`? It turns out that `mkAttributedRef` was importing `q"$scalaPackageClass.this.Predef._"` for all these years, rather than `q"$scalaModule.Predef._"`. This commit makes `mkAttributedRef` special case static owners by referring the the corresponding module, instead.
Diffstat (limited to 'test/files/run/t5943a1.check')
-rw-r--r--test/files/run/t5943a1.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5943a1.check b/test/files/run/t5943a1.check
index 9f4d160af8..4b683a3da5 100644
--- a/test/files/run/t5943a1.check
+++ b/test/files/run/t5943a1.check
@@ -1 +1 @@
-scala.this.Predef.intWrapper(1).to(3).map[Int, scala.collection.immutable.IndexedSeq[Int]](((x$1: Int) => x$1.+(1)))(immutable.this.IndexedSeq.canBuildFrom[Int])
+scala.Predef.intWrapper(1).to(3).map[Int, scala.collection.immutable.IndexedSeq[Int]](((x$1: Int) => x$1.+(1)))(immutable.this.IndexedSeq.canBuildFrom[Int])