summaryrefslogtreecommitdiff
path: root/test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2016-10-24 19:25:17 -0700
committerGitHub <noreply@github.com>2016-10-24 19:25:17 -0700
commiteff0aabb7824513498a4081072845001dbe4897f (patch)
tree79e2dade4a231364d2aedc8e8f8f0d0b034a87c4 /test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala
parent01b76a26ef4285aa4dfc9e1fc00c4886538e8b7d (diff)
parente0a8ffe88740995150fa7ca58797a4cceed3169f (diff)
downloadscala-eff0aabb7824513498a4081072845001dbe4897f.tar.gz
scala-eff0aabb7824513498a4081072845001dbe4897f.tar.bz2
scala-eff0aabb7824513498a4081072845001dbe4897f.zip
Merge pull request #5383 from SethTisue/post-rc1-cleanups
assorted cleanups
Diffstat (limited to 'test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala')
-rw-r--r--test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala b/test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala
index cb8719a235..eaafbf08e1 100644
--- a/test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala
+++ b/test/files/run/indy-via-macro-with-dynamic-args/macro_1.scala
@@ -24,8 +24,8 @@ object Macro {
import c.universe._
pat match {
case l @ Literal(Constant(pat: String)) =>
- val boostrapSym = typeOf[test.Bootstrap].companion.member(TermName("bootstrap"))
- Indy(boostrapSym, l :: Nil, text :: Nil)
+ val bootstrapSym = typeOf[test.Bootstrap].companion.member(TermName("bootstrap"))
+ Indy(bootstrapSym, l :: Nil, text :: Nil)
case _ =>
q"_root_.java.util.regex.Pattern.compile($pat).matcher($text)"
}