summaryrefslogtreecommitdiff
path: root/test/files/run/t5134.scala
blob: 384442fda28978b724481dc6684bf828a45c91a9 (plain) (blame)
1
2
3
4
5
6
7
8
import language._

object Test extends App {
  def b = new AnyRef {
    def a= ()
  }
  b.a match { case _ => () }
}