hello xml start tags

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@3906 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
buraq 2005-01-26 08:50:09 +00:00
parent 2480b6cb66
commit 0fe2239084
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
xmlstart.scala:3: ';' expected but $XML< found.
val aTest = 3 <hello ; //XML start!
^
one error found

View File

@ -0,0 +1,4 @@
case object AClass {
val hello = 3;
val aTest = 3 <hello ; //XML start!
}