rust-clippy/tests/ui/proc_macro.rs
2019-08-25 17:49:45 +00:00

8 lines
134 B
Rust

//! Check that we correctly lint procedural macros.
#![crate_type = "proc-macro"]
#[allow(dead_code)]
fn f() {
let _x = 3.14;
}