summaryrefslogtreecommitdiff
path: root/test/files/run/t7871/Test_2.scala
blob: 3a0b68b56851940f32a8da6df3ed1dbaa5779ad5 (plain) (blame)
1
2
3
4
5
6
object Test extends App {
  import NewQuasiquotes._
  SomeTree match {
    case nq"$x + $y" => println((x, y))
  }
}