summaryrefslogtreecommitdiff
path: root/test/files/neg/annot-nonconst.scala
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-05-30 12:54:45 +0000
committerLex Spoon <lex@lexspoon.org>2007-05-30 12:54:45 +0000
commitb0e5eeb119952f30180579b0da4e3acf50891d85 (patch)
tree23f10f718ef53b2b552e17ab227fff6f8b98aa9d /test/files/neg/annot-nonconst.scala
parent6e961f3b74aad0848cdde5c9741528f50f0f6e41 (diff)
downloadscala-b0e5eeb119952f30180579b0da4e3acf50891d85.tar.gz
scala-b0e5eeb119952f30180579b0da4e3acf50891d85.tar.bz2
scala-b0e5eeb119952f30180579b0da4e3acf50891d85.zip
Diffstat (limited to 'test/files/neg/annot-nonconst.scala')
-rw-r--r--test/files/neg/annot-nonconst.scala6
1 files changed, 6 insertions, 0 deletions
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"
+}