summaryrefslogtreecommitdiff
path: root/test/files/run/static-annot-repl.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/static-annot-repl.scala')
-rw-r--r--test/files/run/static-annot-repl.scala22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/files/run/static-annot-repl.scala b/test/files/run/static-annot-repl.scala
deleted file mode 100644
index 1d2e9b2d7e..0000000000
--- a/test/files/run/static-annot-repl.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-import scala.tools.partest.ReplTest
-
-
-
-object Test extends ReplTest {
- def code = """
-import annotation.static
-@static var x1 = 42
-@static val x2 = 43
-@static def x3 = 44
-x1
-x2
-x3
-class Test {
- @static def x = 42
-}
-"""
-
-}