summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-08-30 11:04:58 +0200
committerAleksandar Prokopec <axel22@gmail.com>2012-08-30 13:05:49 +0200
commitcb393fcbe35d0a871f23189d791b44be1b826ed2 (patch)
treea76fbcd97879b98a63b9a08637ee39d1886169d3 /test
parenta23edefac652e3be1474fceb3ee15d7eaecf1359 (diff)
downloadscala-cb393fcbe35d0a871f23189d791b44be1b826ed2.tar.gz
scala-cb393fcbe35d0a871f23189d791b44be1b826ed2.tar.bz2
scala-cb393fcbe35d0a871f23189d791b44be1b826ed2.zip
Fix SI-6294.
Diffstat (limited to 'test')
-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)
+}
+
+
+