| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-09-06 | Migrated slew of run-pass tests to various subdirectories of `ui/run-pass/`. | Felix S. Klock II | -22/+0 | |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -1/+1 | |
| Now that support has been removed, all lingering use cases are renamed. | ||||
| 2015-03-23 | rustdoc: Replace no-pretty-expanded with pretty-expanded | Brian Anderson | -0/+2 | |
| Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work. | ||||
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -1/+1 | |
| 2015-01-02 | Use `derive` rather than `deriving` in tests | Nick Cameron | -1/+1 | |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -1/+1 | |
| 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-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -2/+1 | |
| 2013-09-25 | Fix run-pass tests to have 'pub fn main' | Alex Crichton | -1/+1 | |
| This is required by the check-fast target because each test is slurped up into a submodule. | ||||
| 2013-05-16 | syntax: implement #[deriving(DeepClone)]. Fixes #6514. | Huon Wilson | -2/+15 | |
| 2013-05-03 | add gitattributes and fix whitespace issues | Daniel Micay | -1/+0 | |
| 2013-03-22 | test: replace uses of old deriving attribute with new one | Andrew Paseltiner | -1/+1 | |
| 2013-03-04 | libsyntax: Implement `#[deriving_clone]` | Patrick Walton | -0/+9 | |
