| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -4/+4 | |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -4/+4 | |
| 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-11-15 | Un-feature gate struct variants | Steven Fackler | -1/+0 | |
| Struct variant field visibility is now inherited. Remove `pub` keywords from declarations. Closes #18641 [breaking-change] | ||||
| 2014-10-28 | Update code with new lint names | Aaron Turon | -1/+1 | |
| 2014-09-24 | Use more descriptive names in dead code messages | Jakub Wieczorek | -1/+1 | |
| 2014-09-24 | Add detection of unused enum variants | Jakub Wieczorek | -0/+41 | |
