aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/runtime
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-05-15 16:25:18 +0200
committerDmitry Petrashko <dark@d-d.me>2015-05-15 16:25:18 +0200
commit49e537e10f572340e2d8f8ac632a5c05227b694f (patch)
tree5ab1b768ddbb656e31ea5998d6dc116e1850415c /src/dotty/runtime
parent595f245880229fc2bf77a6ca759a537a5ce05a73 (diff)
parentf9040627638d619683988e9aec268b43777ee7fd (diff)
downloaddotty-49e537e10f572340e2d8f8ac632a5c05227b694f.tar.gz
dotty-49e537e10f572340e2d8f8ac632a5c05227b694f.tar.bz2
dotty-49e537e10f572340e2d8f8ac632a5c05227b694f.zip
Merge pull request #558 from dotty-staging/run-tests
Add run tests to pending.
Diffstat (limited to 'src/dotty/runtime')
-rw-r--r--src/dotty/runtime/LegacyApp.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/dotty/runtime/LegacyApp.scala b/src/dotty/runtime/LegacyApp.scala
new file mode 100644
index 000000000..2c4b295d0
--- /dev/null
+++ b/src/dotty/runtime/LegacyApp.scala
@@ -0,0 +1,9 @@
+package dotty.runtime
+
+
+/**
+ * replaces the `scala.App` class which relies on `DelayedInit` functionality, not supported by Dotty.
+ */
+class LegacyApp {
+ def main(args: Array[String]): Unit = ()
+}