| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-12 | Fix testsuite errors | mdinger | -2/+11 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -3/+3 | |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -3/+3 | |
| This breaks code that referred to variant names in the same namespace as their enum. Reexport the variants in the old location or alter code to refer to the new locations: ``` pub enum Foo { A, B } fn main() { let a = A; } ``` => ``` pub use self::Foo::{A, B}; pub enum Foo { A, B } fn main() { let a = A; } ``` or ``` pub enum Foo { A, B } fn main() { let a = Foo::A; } ``` [breaking-change] | ||||
| 2014-10-24 | Update tests with the new error messages | Jakub Bukaj | -1/+2 | |
| 2014-08-24 | Adjust the error messages to match the pattern "expected foo, found bar" | Jonas Hietala | -2/+2 | |
| Closes #8492 | ||||
| 2013-11-28 | Register new snapshots | Alex Crichton | -1/+1 | |
| 2013-08-14 | rustc: Eliminate a derived error in check::_match | Tim Chevalier | -2/+3 | |
| 2013-04-18 | rustc: Make some typechecker errors non-fatal | Tim Chevalier | -0/+36 | |
