legacy-svn-scala/test/files/neg/annot-nonconst.scala

7 lines
108 B
Scala

class Length(n: Int) extends ClassfileAnnotation
object Test {
def n = 15
@Length(n) def foo = "foo"
}