summaryrefslogtreecommitdiff
path: root/test/files/neg/bug935.scala
blob: 20654a3f569f0b4ea2dc44fb85e7fb542ceb402a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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"
}