aboutsummaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-19 15:30:27 +0200
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:06 +0100
commit6351c6cc8c3014fd1fbb8244e872c9e28773dad0 (patch)
tree27c6642fbd02a13f0032934cd3f8dde6992e3f44 /library
parent805884cb664467ae97922e1afe44891c64fcfde2 (diff)
downloaddotty-6351c6cc8c3014fd1fbb8244e872c9e28773dad0.tar.gz
dotty-6351c6cc8c3014fd1fbb8244e872c9e28773dad0.tar.bz2
dotty-6351c6cc8c3014fd1fbb8244e872c9e28773dad0.zip
Create dotty-lib.jar for run tests
Diffstat (limited to 'library')
-rw-r--r--library/src/dotty/runtime/LegacyApp.scala7
1 files changed, 3 insertions, 4 deletions
diff --git a/library/src/dotty/runtime/LegacyApp.scala b/library/src/dotty/runtime/LegacyApp.scala
index 2c4b295d0..1eae4c2be 100644
--- a/library/src/dotty/runtime/LegacyApp.scala
+++ b/library/src/dotty/runtime/LegacyApp.scala
@@ -1,9 +1,8 @@
package dotty.runtime
-
-/**
- * replaces the `scala.App` class which relies on `DelayedInit` functionality, not supported by Dotty.
- */
+/** Replaces the `scala.App` class which relies on `DelayedInit` functionality,
+ * not supported by Dotty.
+ */
class LegacyApp {
def main(args: Array[String]): Unit = ()
}