aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/xmlcorner.scala
blob: 6712251861c41ff7a5190e1f713c2bcf35cdd607 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                    
                     







                                   
class foo {
      val wrong = <:bla/>
}
class bar {
      val wrong = <bla:  />
}

// this "pos" test is only included as a parser test
object pos
{
    def wrap(f : Int => Unit) = f(5)

    wrap({ v =>
        if (v == 5) {
            val n = {
                val m = (<a>{}</a>)
                <div>{ v }</div>
            }
            ()
        }
    })
}