summaryrefslogtreecommitdiff
path: root/test/files/presentation/t8934/src/Source.scala
blob: 769c8fd38b2dd8a377d6fbe87db7c58712ff8735 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class Quasi {
  import reflect.runtime.universe._

  def test: Unit = {
    (null: Any) match {
      case q"$foo($bar)" =>
    }
    ()
  }
}