summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/jvm/xmlmore.check3
-rw-r--r--test/files/jvm/xmlmore.scala7
2 files changed, 6 insertions, 4 deletions
diff --git a/test/files/jvm/xmlmore.check b/test/files/jvm/xmlmore.check
index b28255b3c2..29f144c89f 100644
--- a/test/files/jvm/xmlmore.check
+++ b/test/files/jvm/xmlmore.check
@@ -6,6 +6,5 @@ Heathen, fire worshipper or idolatrous, come!
Come even if you broke your penitence a hundred times,
Ours is the portal of hope, come as you are."
Mevlana Celaleddin Rumi
-
-
+<foo><br /></foo>
End Test
diff --git a/test/files/jvm/xmlmore.scala b/test/files/jvm/xmlmore.scala
index 15adbcc891..c6322bc1ef 100644
--- a/test/files/jvm/xmlmore.scala
+++ b/test/files/jvm/xmlmore.scala
@@ -1,3 +1,5 @@
+object myBreak extends scala.xml.Unparsed("<br />")
+
object Test extends Application {
val com = <!-- thissa comment -->
val pi = <?this is a pi foo bar = && {{ ?>
@@ -6,12 +8,13 @@ object Test extends Application {
Heathen, fire worshipper or idolatrous, come!
Come even if you broke your penitence a hundred times,
Ours is the portal of hope, come as you are."
- Mevlana Celaleddin Rumi
+ Mevlana Celaleddin Rumi]]>
-]]>
+ val nazim = <foo>{myBreak}</foo> // shows use of unparsed
Console println com
Console println pi
Console println crz // this guy will escaped, and rightly so
+ Console println nazim
Console println "End Test"
}