summary refs log tree commit diff
path: root/src/test/compile-fail/dup-struct-enum-struct-variant.rs
AgeCommit message (Collapse)AuthorLines
2014-07-07librustc: Disallow modules and types from having the same name.Patrick Walton-2/+2
This will break code that looks like: struct Foo { ... } mod Foo { ... } Change this code to: struct Foo { ... } impl Foo { ... } Or rename the module. Closes #15205. [breaking-change]
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2013-10-06Add appropriate #[feature] directives to testsAlex Crichton-0/+2
2013-06-20Add test for duplicate definitions of structs and enum struct variants.Luqman Aden-0/+17