summaryrefslogtreecommitdiff
path: root/test/files/run/static-annot/field.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/static-annot/field.scala')
-rw-r--r--test/files/run/static-annot/field.scala38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/files/run/static-annot/field.scala b/test/files/run/static-annot/field.scala
index a7d8158321..0677082cf6 100644
--- a/test/files/run/static-annot/field.scala
+++ b/test/files/run/static-annot/field.scala
@@ -182,43 +182,6 @@ object Test7 extends Check {
-/* TEST 8 */
-
-object Foo8 {
- @static val field = 7
-
- val function: () => Int = () => {
- field + 1
- }
-
- val anon = new Runnable {
- def run() {
- assert(field == 7, "runnable asserting field is 7")
- }
- }
-
- @static var mutable = 10
-
- val mutation: () => Unit = () => {
- mutable += 1
- }
-}
-
-object Test8 {
- def test() {
- assert(Foo8.function() == 8, "function must return 8")
- Foo8.anon.run()
- assert(Foo8.mutable == 10, "mutable is 10")
- Foo8.mutation()
- assert(Foo8.mutable == 11, "mutable is 11")
- Foo8.mutation()
- assert(Foo8.mutable == 12, "mutable is 12")
- }
-}
-
-
-
-
/* main */
object Test {
@@ -231,7 +194,6 @@ object Test {
Test5.test()
Test6.test()
Test7.test()
- Test8.test()
}
}