summaryrefslogtreecommitdiff
path: root/test/files/jvm/xml03syntax.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-06-10 09:51:47 +0000
committermichelou <michelou@epfl.ch>2008-06-10 09:51:47 +0000
commit943f6dda3b32057a3d9e91c68baac8971d94e567 (patch)
treea42a01bc59922d1fb9058792bbe3dce9f36c4e6c /test/files/jvm/xml03syntax.scala
parentdbfdf0ec6d3ef0017b279dd9a195ce2615f9c3bb (diff)
downloadscala-943f6dda3b32057a3d9e91c68baac8971d94e567.tar.gz
scala-943f6dda3b32057a3d9e91c68baac8971d94e567.tar.bz2
scala-943f6dda3b32057a3d9e91c68baac8971d94e567.zip
int -> Int, etc..
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>