| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-07-07 | librustc: 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] | ||||
