|
Matthias edited on 2004-09-29 10:08:59.0
|
|
|
|
Burak edited on 2004-09-30 12:04:16.0
|
I fixed this to the following. The second error message
is garbage, but not easy to avoid.
te.scala:2: missing end tag in XML literal for
val x = ;
^
te.scala:4: ';' expected but something found.
^
two errors found
|
|
Matthias edited on 2004-10-12 10:20:53.0
|
I still get exceptions for unbalanced XML literals. Here's an example:
object T {
val x = ;
}
|
|
Matthias edited on 2004-10-12 10:22:25.0
|
Oops, my brackets got lost. Ok, here's another try:
object T {
val x = <a>;
}
|
|
Burak edited on 2004-10-12 10:35:12.0
|
not reproducible, are you using the latest check-out?
I get:
test.scala:2: missing end tag in XML literal for
val x = <a>
^
test.scala:4: ';' expected but something found.
^
|