This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
0557359ecd
rust
/
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 05:47:33 -05:00
Add a lint for casts from char literals to u8
2016-01-27 13:23:59 -06:00
Make most tests an `example` so we can run them one by one
2017-05-17 07:19:44 -05:00
#![
warn(char_lit_as_u8)
]
Add a lint for casts from char literals to u8
2016-01-27 13:23:59 -06:00
#![
allow(unused_variables)
]
fn
main
(
)
{
remove all //~ from tests
2017-02-08 07:58:07 -06:00
let
c
=
'a'
as
u8
;
Add a lint for casts from char literals to u8
2016-01-27 13:23:59 -06:00
}
Reference in New Issue
Copy Permalink