38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
10 lines
151 B
Rust
10 lines
151 B
Rust
#![warn(clippy::builtin_type_shadow)]
|
|
#![allow(non_camel_case_types)]
|
|
|
|
fn foo<u32>(a: u32) -> u32 {
|
|
42
|
|
// ^ rustc's type error
|
|
}
|
|
|
|
fn main() {}
|