summaryrefslogtreecommitdiff
path: root/test/files/jvm/xml05.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-10-04 00:53:15 +0000
committerPaul Phillips <paulp@improving.org>2011-10-04 00:53:15 +0000
commit77d90e3aead2a48c1b5c633e57dea1b452b40db1 (patch)
treec7f8ea8b961e5ab13e8e56f3b115d8e380d1ab43 /test/files/jvm/xml05.scala
parent0d730957dd61c8d9132dcec9b9fe07805d2bb960 (diff)
downloadscala-77d90e3aead2a48c1b5c633e57dea1b452b40db1.tar.gz
scala-77d90e3aead2a48c1b5c633e57dea1b452b40db1.tar.bz2
scala-77d90e3aead2a48c1b5c633e57dea1b452b40db1.zip
Fix for XML entity bug.
Hard to believe a bug like this can exist this long. Cay Horstman showed me. // Hey, where's my eacute? scala> <city name="San Jos&eacute;"/>.attributes foreach println name="San Jos&;" No review.
Diffstat (limited to 'test/files/jvm/xml05.scala')
-rw-r--r--test/files/jvm/xml05.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/jvm/xml05.scala b/test/files/jvm/xml05.scala
new file mode 100644
index 0000000000..52ae255393
--- /dev/null
+++ b/test/files/jvm/xml05.scala
@@ -0,0 +1,7 @@
+import scala.tools.partest.ReplTest
+
+object Test extends ReplTest {
+ def code = """
+<city name="San Jos&eacute;"/>
+ """
+} \ No newline at end of file