summary refs log tree commit diff
path: root/src/test/run-pass/deriving-clone-generic-enum.rs
AgeCommit message (Collapse)AuthorLines
2015-01-30Remove all `i` suffixesTobias Bucher-1/+1
2015-01-02Use `derive` rather than `deriving` in testsNick Cameron-1/+1
2014-11-17Switch to purely namespaced enumsSteven 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-08Removed DeepClone. Issue #12698.Michael Darakananda-2/+1
2013-09-25Fix 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-16syntax: implement #[deriving(DeepClone)]. Fixes #6514.Huon Wilson-2/+15
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-03-22test: replace uses of old deriving attribute with new oneAndrew Paseltiner-1/+1
2013-03-04libsyntax: Implement `#[deriving_clone]`Patrick Walton-0/+9