summaryrefslogtreecommitdiff
path: root/test/files/jvm/deprecation/t1118.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/deprecation/t1118.scala')
-rwxr-xr-xtest/files/jvm/deprecation/t1118.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/files/jvm/deprecation/t1118.scala b/test/files/jvm/deprecation/t1118.scala
deleted file mode 100755
index 4464e51f89..0000000000
--- a/test/files/jvm/deprecation/t1118.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-import scala.xml._
-
-object Test {
- def main(args: Array[String]) {
- println(<xml:group>
-<hi/> <!-- literal short -->
-<there></there> <!-- literal long -->
-<guys who="you all"></guys> <!-- literal long with attribute-->
-<hows it="going"/> <!-- literal short with attribute -->
-<this>scala stuff is pretty cool</this> <!-- literal not empty -->
-</xml:group>)
-
- println(Elem(null, "bob", Null, TopScope, false) ++ Text(" ") ++ Comment("programmatic long"))
-
- println(Elem(null, "dobbs", Null, TopScope, true) ++ Text(" ") ++ Comment("programmatic short"))
-
- println(Elem(null, "is", Attribute("really", Text("yep"), Null), TopScope, true) ++ Text(" ") ++ Comment ("programmatic short with attribute"))
-
- println(Elem(null, "slack", Attribute("sing", Text("it"), Null), TopScope, false) ++ Text(" ") ++ Comment ("programmatic long with attribute"))
- }
-} \ No newline at end of file