summary refs log tree commit diff
path: root/src/test/compile-fail/shadowing-in-the-same-pattern.rs
AgeCommit message (Collapse)AuthorLines
2014-06-11librustc: Forbid identifiers that shadow in the same pattern in letPatrick Walton-0/+18
bindings and function arguments. Issue #14581. To fix code that this breaks, give the pattern identifiers different names. [breaking-change]