#![feature(tool_lints)] #![warn(clippy::builtin_type_shadow)] fn foo(a: u32) -> u32 { 42 // ^ rustc's type error } fn main() { }