aboutsummaryrefslogtreecommitdiff
path: root/tests/run
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-08-24 13:48:26 +0200
committerMartin Odersky <odersky@gmail.com>2016-08-26 11:13:17 +0200
commite1dc0b46a81a507ca040dca05a98f49fd6520d25 (patch)
treef812e060daaa9a6152b045de4f102e233d08d1c1 /tests/run
parentb41cff6fa4ccc593916790364424051d9eef200d (diff)
downloaddotty-e1dc0b46a81a507ca040dca05a98f49fd6520d25.tar.gz
dotty-e1dc0b46a81a507ca040dca05a98f49fd6520d25.tar.bz2
dotty-e1dc0b46a81a507ca040dca05a98f49fd6520d25.zip
Move tests to right directory
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/t5544/Api_1.scala8
-rw-r--r--tests/run/t5544/Test_2.scala3
2 files changed, 0 insertions, 11 deletions
diff --git a/tests/run/t5544/Api_1.scala b/tests/run/t5544/Api_1.scala
deleted file mode 100644
index b4c92864d..000000000
--- a/tests/run/t5544/Api_1.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-import scala.annotation.StaticAnnotation
-
-class ann(val bar: Any) extends StaticAnnotation
-
-object Api {
- @ann({def foo = "foo!!"})
- def foo = println("foo")
-}
diff --git a/tests/run/t5544/Test_2.scala b/tests/run/t5544/Test_2.scala
deleted file mode 100644
index ea9232221..000000000
--- a/tests/run/t5544/Test_2.scala
+++ /dev/null
@@ -1,3 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- Api.foo
-}