summaryrefslogtreecommitdiff
path: root/test/files/neg/xmlParsing002.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/xmlParsing002.scala')
-rw-r--r--test/files/neg/xmlParsing002.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/files/neg/xmlParsing002.scala b/test/files/neg/xmlParsing002.scala
deleted file mode 100644
index 85e6b4384d..0000000000
--- a/test/files/neg/xmlParsing002.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-//############################################################################
-// XML Parsing
-//############################################################################
-// $Id$
-
-import scala.testing.UnitTest._ ;
-
-import scala.xml._ ;
-
-object Test with Application {
-
- // error: no whitespace between attributes
- val y = <hello foo="bar"baz="baz"></hello>.toString();
-
-}