summaryrefslogtreecommitdiff
path: root/test/files/pos/t1203a.scala
blob: 062ef93fc6dc94e46b3ccecc228d6da4d81f21e5 (plain) (blame)
1
2
3
4
5
6
7
case class ant(t: String) extends scala.annotation.Annotation
object Test {
   def main(args: Array[String]): Unit = {
     val a: scala.xml.NodeSeq @ant("12") = Nil
     println(a)
   }
}