summaryrefslogtreecommitdiff
path: root/test/files/neg/xmlParsing002.scala
blob: 85e6b4384dbeae59ea6e6adea6e0bf783a105270 (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: no whitespace between attributes
  val y = <hello foo="bar"baz="baz"></hello>.toString();

}