summaryrefslogtreecommitdiff
path: root/test/files/run/t7375b.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-9473 Cleaner references to statically owned symbolsJason Zaugg2015-09-221-4/+4
| | | | | | | | | | | | 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.
* SI-7375 ClassTag for value class aliasesEugene Burmako2013-05-311-0/+4
reifyRuntimeClass now always dealiases its argument prior to processing.