aboutsummaryrefslogtreecommitdiff
path: root/library/src/dotty/runtime/LegacyApp.scala
blob: 2c4b295d05b5b5ab04b276a80d89f01703cd0a9f (plain) (blame)
1
2
3
4
5
6
7
8
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 = ()
}