summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-keyword-bind.scala
blob: a3b155334821ab66564355487b97697e852209df (plain) (blame)
1
2
3
4
5
6
object Test12 {
  val Some(macro) = Some(42)
  macro match {
    case macro => println(macro)
  }
}