mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
8 lines
124 B
Rust
8 lines
124 B
Rust
#![feature(tool_lints)]
|
|
|
|
|
|
#![warn(clippy::char_lit_as_u8)]
|
|
#![allow(unused_variables)]
|
|
fn main() {
|
|
let c = 'a' as u8;
|
|
}
|