summaryrefslogtreecommitdiff
path: root/test/files/neg/bug38.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/bug38.scala')
-rw-r--r--test/files/neg/bug38.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/neg/bug38.scala b/test/files/neg/bug38.scala
deleted file mode 100644
index 8f31ad9a0e..0000000000
--- a/test/files/neg/bug38.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object testElem {
-
- import scala.xml.* ; // does not work
- //import scala.xml.Element ; //works
-
- def main( args:Array[String] ) = {
- val foo = new Element { def getName = "hallo"; def getChildren = Nil; def getAttribs = new HashMap[String,String] };
- ()
- }
-
-}