summary refs log tree commit diff
path: root/src/test/compile-fail/enum-and-module-in-same-scope.rs
AgeCommit message (Collapse)AuthorLines
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2014-10-31First stage of enum namespacing changesSteven Fackler-1/+1
2014-07-07librustc: Disallow modules and types from having the same name.Patrick Walton-0/+19
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]