summaryrefslogtreecommitdiff
path: root/test/pending/run/t5273_1.scala
blob: 8b75084463d291ddc17e202a0cb64e72d9f6dd64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import scala.tools.nsc.reporters._
import scala.tools.nsc.Settings
import reflect.runtime.Mirror.ToolBox

object Test extends App {
  val code = scala.reflect.Code.lift{
    val RegexParser = """(.*) \d+([A-Z]+) \| (.*) \|.*""".r
    val RegexParser(name, shortname, value) = "American Dollar 1USD | 2,8567 | sometext"
    println("name = %s, shortname = %s, value = %s".format(name, shortname, value))
  };

  val reporter = new ConsoleReporter(new Settings)
  val toolbox = new ToolBox(reporter)
  val ttree = toolbox.typeCheck(code.tree)
  toolbox.runExpr(ttree)
}