summaryrefslogtreecommitdiff
path: root/test/files/neg/t5429.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5617 Better error message for "x overrides nothing".Jason Zaugg2012-06-171-5/+15
| | | | "It looks like you're trying to override a method", notes Clippy.
* Fix for bad bug with accidental overrides.Paul Phillips2012-02-011-0/+132
An object in a subclass would silently override an inherited method, then throw a CCE at runtime. I blamed this on matchesType and altered it accordingly. There's a pretty extensive test case which reflects my expectations. Review by @odersky please. Closes SI-5429.