summaryrefslogtreecommitdiff
path: root/test/files/pos/t6896.scala
blob: ab527a804aeec32cf8177caad24b71e3c422c723 (plain) (blame)
1
2
3
4
5
6
7
object TooManyMains {
  def main(args: Array[String]): Unit = {
    println("Hello, World!")
  }
  def main(a: Int, b: Int) = ???
  def main(s: String, n: String) = ???
}