summaryrefslogblamecommitdiff
path: root/test/files/run/virtpatmat_extends_product.scala
blob: 4b4bc634a72cee3cc4c741028edbdf67a5035f12 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                         



                                                                              







                                                                                                                    
 
object Test extends App {
  case class AnnotationInfo(a: String, b: Int) extends Product2[String, Int] {
    def _1 = a
    def _2 = b
  }

  // if we're not careful in unapplyTypeListFromReturnType, the generated unapply is
  // thought to return two components instead of one, since AnnotationInfo (the result of the unapply) is a Product2
  case class NestedAnnotArg(ai: AnnotationInfo)

  NestedAnnotArg(AnnotationInfo("a", 1)) match {
    case NestedAnnotArg(x) => println(x)
  }
}