summaryrefslogtreecommitdiff
path: root/test/files/jvm/xml03syntax.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/xml03syntax.scala')
-rw-r--r--test/files/jvm/xml03syntax.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/jvm/xml03syntax.scala b/test/files/jvm/xml03syntax.scala
index 7e49ee7b7e..2fee0243a6 100644
--- a/test/files/jvm/xml03syntax.scala
+++ b/test/files/jvm/xml03syntax.scala
@@ -41,9 +41,9 @@ object Test extends AnyRef with Assert {
assertEquals(handle[Boolean](xd), true)
- val xe = <hello>{ 5:short }</hello>
+ val xe = <hello>{ 5:Short }</hello>
- assertEquals(handle[Short](xe), 5:short)
+ assertEquals(handle[Short](xe), 5:Short)
val xf = <hello>{ val x = 27; x }</hello>