summaryrefslogtreecommitdiff
path: root/test/files/neg/nested-annotation.scala
blob: 35c0cd3b75ce0d900a0dcc525515c7591780fece (plain) (blame)
1
2
3
4
5
6
7
8
9
import annotation._

class ComplexAnnotation(val value: Annotation) extends ClassfileAnnotation

class A {
  // It's hard to induce this error because @ComplexAnnotation(@inline) is a parse
  // error so it never gets out of the parser, but:
  @ComplexAnnotation(new inline) def bippy(): Int = 1
}