Files
rust/tests/ui/as_underscore.rs
Guillaume Gomez f666fd6417 Update UI tests
2025-02-15 13:38:16 +01:00

14 lines
200 B
Rust

#![warn(clippy::as_underscore)]
fn foo(_n: usize) {}
fn main() {
let n: u16 = 256;
foo(n as _);
//~^ as_underscore
let n = 0_u128;
let _n: u8 = n as _;
//~^ as_underscore
}