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