summaryrefslogtreecommitdiff
path: root/test/files/neg/xmlParsing001.scala
blob: d732eb3869833ecd169aa04a37f14777e5c9d368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//############################################################################
// XML Parsing
//############################################################################
// $Id$

import scala.testing.UnitTest._ ;

import scala.xml._ ;

object Test with Application {

  // error: closing tag of hello not found
  val y = <hello></hallo>.toString();

}