about summary refs log tree commit diff
path: root/tests/ui/author.stdout
AgeCommit message (Collapse)AuthorLines
2019-09-27Fix author lintflip1995-1/+1
2019-09-27Rustup to rust-lang/rust#64813flip1995-6/+6
2019-03-07fix missing a semicolonrchaser53-1/+1
2019-01-20Fixed breakage due to rust-lang/rust#57489Michael Wright-2/+1
2018-07-16DeclKindcsmoe-1/+1
2018-07-16StmtKindcsmoe-1/+1
2018-07-16TyKindcsmoe-1/+1
2018-07-16ExprKindcsmoe-2/+2
2018-05-11Patterns, locals and matches for author lintOliver Schneider-1/+6
2018-02-24Fix author lintGuillem Nieto-0/+10
The author lint was generating invalid code as shown on issue: https://github.com/rust-lang-nursery/rust-clippy/issues/2442 I've changed the generated code to properly track cast expressions. Unfortunatelly, I've had to rewrite the `visit_decl` method, to avoid that last if of the chain will be added. After looking at the code, this last line was being added because of the `let x: char` part, but not because of the `0x45df as char` expression. It seems that let statements should not generate code on the author lint, but I'm not sure that this is true or if I'm breaking something on other code generation parts. Finally, I've added a test for the author lint, but I'm not sure that this needs to be added to the testsuite.