aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-07-14 15:16:32 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-07-14 15:16:32 +0200
commit90c2bed395f4b449cf25392504ad39462cb99b72 (patch)
tree24ae3895fd0c77790be0602aac590f1b69081b76 /tests/pending/run
parent74c2e2326f6a68a889347ef3052d88a586aca84f (diff)
downloaddotty-90c2bed395f4b449cf25392504ad39462cb99b72.tar.gz
dotty-90c2bed395f4b449cf25392504ad39462cb99b72.tar.bz2
dotty-90c2bed395f4b449cf25392504ad39462cb99b72.zip
Implement emotion of annotations in GenBCode.
Fixes #688
Diffstat (limited to 'tests/pending/run')
-rw-r--r--tests/pending/run/t8087.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/run/t8087.scala b/tests/pending/run/t8087.scala
deleted file mode 100644
index 7306039c6..000000000
--- a/tests/pending/run/t8087.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-trait Foo {
- @volatile private[this] var x: String = ""
- @volatile private var y: String = ""
-}
-
-class Bar extends Foo
-
-object Test extends dotty.runtime.LegacyApp {
- classOf[Bar].getDeclaredFields.foreach(f => {
- assert(java.lang.reflect.Modifier.isVolatile(f.getModifiers), f.getName)
- })
-}