summaryrefslogtreecommitdiff
path: root/test/files/pos/bug0646.scala
Commit message (Collapse)AuthorAgeFilesLines
* Tighter pattern matching hits the street.Paul Phillips2010-02-181-1/+1
| | | | | | | | | | | | | is final and does not conform to the pattern, it will no longer compile. See all the exciting things you can no longer do: "bob".reverse match { case Seq('b', 'o', 'b') => true } // denied! "bob".toArray match { case Seq('b', 'o', 'b') => true } // rejected! final class Dunk def f3(x: Dunk) = x match { case Seq('b', 'o', 'b') => true } // uh-uh! And so forth. Review by odersky.
* Moved pending tests that succeed to their place...Iulian Dragos2008-06-111-0/+21
| | | | | | Moved pending tests that succeed to their place in the 'files' directory.
* fixed bugs.Burak Emir2007-09-041-21/+0
|
* Moved some test from pending/ to files/mihaylov2007-04-171-0/+21