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-15 01:17:16 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
679bc32f46
rust-clippy
/
tests
/
ui
/
char_lit_as_u8.rs
9 lines
93 B
Rust
Raw
Normal View
History
Unescape
Escape
Reduce the hackiness of cargo-clippy
2017-09-18 10:47:33 +00:00
Add a lint for casts from char literals to u8
2016-01-27 19:23:59 +00:00
Make most tests an `example` so we can run them one by one
2017-05-17 12:19:44 +00:00
#![
warn(char_lit_as_u8)
]
Add a lint for casts from char literals to u8
2016-01-27 19:23:59 +00:00
#![
allow(unused_variables)
]
fn
main
(
)
{
remove all //~ from tests
2017-02-08 13:58:07 +00:00
let
c
=
'a'
as
u8
;
Add a lint for casts from char literals to u8
2016-01-27 19:23:59 +00:00
}
Reference in a new issue
Copy permalink