rust-clippy/tests/ui/as_underscore.rs

14 lines
170 B
Rust
Raw Normal View History

2022-06-03 13:59:26 +00:00
// run-rustfix
#![warn(clippy::as_underscore)]
fn foo(_n: usize) {}
fn main() {
let n: u16 = 256;
foo(n as _);
let n = 0_u128;
let _n: u8 = n as _;
}