summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/files/neg/annot-nonconst.check4
-rw-r--r--test/files/neg/annot-nonconst.scala6
2 files changed, 10 insertions, 0 deletions
diff --git a/test/files/neg/annot-nonconst.check b/test/files/neg/annot-nonconst.check
new file mode 100644
index 0000000000..197ff930a5
--- /dev/null
+++ b/test/files/neg/annot-nonconst.check
@@ -0,0 +1,4 @@
+annot-nonconst.scala:5: error: attribute argument needs to be a constant; found: Test.this.n
+ @Length(n) def foo = "foo"
+ ^
+one error found
diff --git a/test/files/neg/annot-nonconst.scala b/test/files/neg/annot-nonconst.scala
new file mode 100644
index 0000000000..5a0b72aca2
--- /dev/null
+++ b/test/files/neg/annot-nonconst.scala
@@ -0,0 +1,6 @@
+class Length(n: Int) extends ClassfileAnnotation
+
+object Test {
+ def n = 15
+ @Length(n) def foo = "foo"
+}