summaryrefslogtreecommitdiff
path: root/test/files/jvm/xmlmore.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/xmlmore.scala')
-rw-r--r--test/files/jvm/xmlmore.scala7
1 files changed, 5 insertions, 2 deletions
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"
}