mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-15 10:07:30 +00:00
9 lines
165 B
Rust
9 lines
165 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(char_lit_as_u8)]
|
|
#![allow(unused_variables)]
|
|
fn main() {
|
|
let c = 'a' as u8; //~ERROR casting character literal
|
|
}
|