summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-nested-a
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-07-24 13:24:23 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-08-02 15:51:16 +0200
commita0a63c4558018a5e75149a45f7df775f731c26f1 (patch)
tree984791e1b5a15761d1820195c61ad4868e479861 /test/files/run/macro-reify-nested-a
parent9892f52adf76c1e39c6d129f8b35ee98802de188 (diff)
downloadscala-a0a63c4558018a5e75149a45f7df775f731c26f1.tar.gz
scala-a0a63c4558018a5e75149a45f7df775f731c26f1.tar.bz2
scala-a0a63c4558018a5e75149a45f7df775f731c26f1.zip
evicts last traces of makro from our codebase
Removes the stubs left out to appease the old starr, fixes macro tests.
Diffstat (limited to 'test/files/run/macro-reify-nested-a')
-rw-r--r--test/files/run/macro-reify-nested-a/Impls_Macros_1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/macro-reify-nested-a/Impls_Macros_1.scala b/test/files/run/macro-reify-nested-a/Impls_Macros_1.scala
index b52b962e31..4dda80a117 100644
--- a/test/files/run/macro-reify-nested-a/Impls_Macros_1.scala
+++ b/test/files/run/macro-reify-nested-a/Impls_Macros_1.scala
@@ -1,6 +1,6 @@
import scala.reflect.runtime.universe._
import scala.reflect.runtime.{universe => ru}
-import scala.reflect.makro.Context
+import scala.reflect.macros.Context
case class Utils[C <: Context]( c:C ) {
import c.universe._
@@ -33,7 +33,7 @@ object QueryableMacros{
c.universe.reify{ Queryable.factory[S]( foo.splice )}
}
def map[T:c.TypeTag, S:c.TypeTag]
- (c: scala.reflect.makro.Context)
+ (c: scala.reflect.macros.Context)
(projection: c.Expr[T => S]): c.Expr[Queryable[S]] = _helper[c.type,S]( c )( "_map", projection )
}
class Queryable[T]{