aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t0048.scala
blob: c1fcc6ddcb891336cb3405a4f4d06f9de4bee6ca (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                 
object A1 {
 object A2 {
   class X { def unapply(v : Int) = Some(v + 1) }
 }
}

object Test {
  def main(args: Array[String]): Unit = {
    val q = new A1.A2.X
    val res = 5 match { case q(x) => x }
    println(res)
  }
}