summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-09-04 06:34:14 -0700
committerPaul Phillips <paulp@improving.org>2012-09-04 06:34:14 -0700
commit2355b656e030a7b968aa02de9a688f565b147581 (patch)
treece378f0732fe6c3c6555c78b029c9273d90cbfc9 /test/files/pos
parent1e934c3acceb205971963836bc3c1e4bbb01df6c (diff)
parentcb393fcbe35d0a871f23189d791b44be1b826ed2 (diff)
downloadscala-2355b656e030a7b968aa02de9a688f565b147581.tar.gz
scala-2355b656e030a7b968aa02de9a688f565b147581.tar.bz2
scala-2355b656e030a7b968aa02de9a688f565b147581.zip
Merge pull request #1217 from axel22/issue/6294
Fix SI-6294.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6294.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/pos/t6294.scala b/test/files/pos/t6294.scala
new file mode 100644
index 0000000000..c6d39a9cc8
--- /dev/null
+++ b/test/files/pos/t6294.scala
@@ -0,0 +1,14 @@
+
+
+
+object A {
+ @annotation.static final val x = 123
+}
+
+
+object B {
+ println(A.x)
+}
+
+
+