summaryrefslogblamecommitdiff
path: root/test/files/neg/bug935.scala
blob: 8677efaf3f7dec29ee15ddbbd253679424f2a124 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                                          





                                               
 
object Test3 {
  class E[T >: Nothing <: String](s: T) extends Annotation
  class B
  // val a = new E[B](new B)
  @E[B](new B) val b = "hi"
}

object Test4 {
  class E[T <: String](s: T) extends Annotation
  class B
  val b: String @E[B](new B) = "hi"
}