summaryrefslogtreecommitdiff
path: root/test/files/run/macro-impl-default-params
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-08-04 09:42:25 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-08-04 09:42:25 +0200
commit509cc5287fe03f576ebaa44d4e875e3836fe8b7f (patch)
tree4da095d388868e00dd57d043e132815e3616b3e3 /test/files/run/macro-impl-default-params
parentec4a9fb5251bed30f4d99091d66190c1bd9daa03 (diff)
downloadscala-509cc5287fe03f576ebaa44d4e875e3836fe8b7f.tar.gz
scala-509cc5287fe03f576ebaa44d4e875e3836fe8b7f.tar.bz2
scala-509cc5287fe03f576ebaa44d4e875e3836fe8b7f.zip
staticTpe => staticType, actualTpe => actualType
Diffstat (limited to 'test/files/run/macro-impl-default-params')
-rw-r--r--test/files/run/macro-impl-default-params/Impls_Macros_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/macro-impl-default-params/Impls_Macros_1.scala b/test/files/run/macro-impl-default-params/Impls_Macros_1.scala
index b57af2ede4..2ba28824e0 100644
--- a/test/files/run/macro-impl-default-params/Impls_Macros_1.scala
+++ b/test/files/run/macro-impl-default-params/Impls_Macros_1.scala
@@ -8,7 +8,7 @@ object Impls {
val U = implicitly[c.TypeTag[U]]
val body = Block(
Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant("invoking foo_targs...")))),
- Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant("type of prefix is: " + prefix.staticTpe)))),
+ Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant("type of prefix is: " + prefix.staticType)))),
Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant("type of prefix tree is: " + prefix.tree.tpe)))),
Apply(Select(Ident(definitions.PredefModule), newTermName("println")), List(Literal(Constant("U is: " + U.tpe)))),
Literal(Constant(())))