This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-02-10 05:53:10 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
c7ae44c0e2
rust
/
tests
/
ui
/
char_lit_as_u8.rs
6 lines
98 B
Rust
Raw
Normal View
History
Unescape
Escape
Adapt ui-tests to the tool_lints
2018-07-28 15:34:52 +00:00
#![
warn(clippy::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 New Issue
Copy Permalink