This website requires JavaScript.
Explore
Help
Sign In
Mirrors
/
rust-clippy
Watch
2
Star
0
Fork
You've already forked rust-clippy
0
mirror of
https://github.com/rust-lang/rust-clippy
synced
2024-11-14 17:07:17 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
7547a4ddef
rust-clippy
/
tests
/
ui
/
author.rs
8 lines
99 B
Rust
Raw
Normal View
History
Unescape
Escape
Use the new scoped tool attributes
2018-05-19 12:04:57 +00:00
#![
feature(tool_attributes)
]
Fix author lint 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.
2018-02-24 01:02:48 +00:00
fn
main
(
)
{
Use the new scoped tool attributes
2018-05-19 12:04:57 +00:00
#[
clippy::author
]
Fix author lint 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.
2018-02-24 01:02:48 +00:00
let
x
:
char
=
0x45
as
char
;
}
Reference in a new issue
Copy permalink