summaryrefslogblamecommitdiff
path: root/test/files/pos/bug1203.scala
blob: 4938621aa9954c5cd60e9a3c337c96134beb134f (plain) (tree)
1
2
3
4
5
6
7






                                              
case class ant(t: String) extends Annotation
object Test {
   def main(args: Array[String]): Unit = {
     val a: scala.xml.NodeSeq @ant("12") = Nil
     println(a)
   }
}