summaryrefslogtreecommitdiff
path: root/test/files/pos/tryexpr.scala
Commit message (Collapse)AuthorAgeFilesLines
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-241-1/+1
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* Modifies try/catch/finally to allow arbitrary e...Paul Phillips2009-03-131-0/+10
Modifies try/catch/finally to allow arbitrary expressions for try. Formerly { ... } was required for try. Now expressions like: val x = try Integer.parseInt("xx") catch { case e => 10 } work as one would hope.