| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Moved compile-fail tests to ui tests. | David Wood | -26/+0 | |
| 2016-10-04 | Move pattern resolution checks from typeck to resolve | Vadim Petrochenkov | -1/+1 | |
| Make error messages more precise | ||||
| 2016-05-26 | Implement `..` in tuple (struct) patterns | Vadim Petrochenkov | -1/+1 | |
| 2016-01-08 | The lint warnings are not reported since we report the errors first and then ↵ | Felix S. Klock II | -1/+0 | |
| exit. I think that behavior is fine, so I am removing the expected warnings from these tests. | ||||
| 2015-11-19 | Add special case for `UnitVariant(..)` patterns | Vadim Petrochenkov | -1/+2 | |
| 2015-11-19 | Fix various bugs around empty structs and patterns | Vadim Petrochenkov | -1/+1 | |
| 2015-01-08 | Update compile fail tests to use usize. | Huon Wilson | -2/+2 | |
| 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] | ||||
| 2013-05-27 | Change `alt` to `match` in filenames. | Lindsey Kuper | -0/+26 | |
