summaryrefslogtreecommitdiff
path: root/test/files/run/t0048.scala
blob: 9ee3453cd9bc81de064479559cfc3ddfa004c335 (plain) (blame)
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]) {
    val q = new A1.A2.X
    val res = 5 match { case q(x) => x }
    println(res)
  }
}