summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-type
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-09-27 16:12:50 -0700
committerEugene Burmako <xeno.by@gmail.com>2012-09-28 14:22:05 +0200
commitb5b614444cefe84861b06a09fbaf10d100556556 (patch)
tree1b7b0e8f8410daa2cd41b76257d09e97ad4a0958 /test/files/run/macro-reify-type
parenta6b81ac12a45866e97d30133c12dee775b93ea39 (diff)
downloadscala-b5b614444cefe84861b06a09fbaf10d100556556.tar.gz
scala-b5b614444cefe84861b06a09fbaf10d100556556.tar.bz2
scala-b5b614444cefe84861b06a09fbaf10d100556556.zip
Implementations of isValueType and isNonValueType.
Restrictions regarding how non-value types can be used have generally not been enforced explicitly, depending instead on the fact that the compiler wouldn't attempt to use them in strange ways like offering a method type as a type argument. Since users can now create most types from scratch, it has become important to enforce the restrictions in a more direct fashion. This was a lot harder than it probably should have been because there are so many types which go unmentioned by the specification. Hopefully a useful exercise in any case.
Diffstat (limited to 'test/files/run/macro-reify-type')
-rw-r--r--test/files/run/macro-reify-type/Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/macro-reify-type/Macros_1.scala b/test/files/run/macro-reify-type/Macros_1.scala
index aeec9fc97c..06de05735d 100644
--- a/test/files/run/macro-reify-type/Macros_1.scala
+++ b/test/files/run/macro-reify-type/Macros_1.scala
@@ -17,7 +17,7 @@ object StaticReflect {
case NoSymbol => c.error(c.enclosingPosition, s"No member called $nameName in $clazz.") ; reify(ru.NoType)
case member =>
val mtpe = member typeSignatureIn clazz
- val mtag = c.reifyType(c.runtimeUniverse, Select(c.runtimeUniverse, newTermName("rootMirror")), mtpe)
+ val mtag = c.reifyType(treeBuild.mkRuntimeUniverseRef, Select(treeBuild.mkRuntimeUniverseRef, newTermName("rootMirror")), mtpe)
val mtree = Select(mtag, newTermName("tpe"))
c.Expr[ru.Type](mtree)