summaryrefslogtreecommitdiff
path: root/test/files/run/macro-expand-unapply-b/Test_2.scala
blob: 5352160dfe058965230582cc54ef3fb45ae50179 (plain) (blame)
1
2
3
4
5
6
7
8
object Test extends App {
  import Macros._
  def whatever() = null
  val q"$x1, $y1" = whatever()
  println(x1, y1)
  val q"$x2" = whatever()
  println(x2)
}