mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-30 16:43:41 +00:00
8 lines
108 B
Rust
8 lines
108 B
Rust
|
#![feature(plugin, custom_attribute)]
|
||
|
|
||
|
fn main() {
|
||
|
|
||
|
#[clippy(author)]
|
||
|
let x: char = 0x45 as char;
|
||
|
}
|