aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t6104.scala
blob: ac6d4c77e5000c9d8f2e9b167ed99d97a158e072 (plain) (tree)
1
2
3
4
5
6
7
8






                                  
                              
class A { Self =>
  val ok = "ok"
  this match {
    case me@Self => println(me.ok)
  }
}

object Test extends A with App