summaryrefslogtreecommitdiff
path: root/test/files/run/t1620.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1620.scala')
-rw-r--r--test/files/run/t1620.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t1620.scala b/test/files/run/t1620.scala
index ff25955eb7..e8ea06eb5f 100644
--- a/test/files/run/t1620.scala
+++ b/test/files/run/t1620.scala
@@ -2,7 +2,7 @@ import java.io.PrintWriter
import scala.xml.XML
import scala.xml.dtd.{DocType, PublicID}
-object Test extends Application {
+object Test extends App {
val dt = DocType("foo", PublicID("-//Foo Corp//DTD 1.0//EN", "foo.dtd"), Seq())
val pw = new PrintWriter(System.out)
XML.write(pw, <foo/>, "utf-8", true, dt)