Files
rust/tests/ui/as_underscore.rs

14 lines
200 B
Rust
Raw Normal View History

2022-06-03 15:59:26 +02:00
#![warn(clippy::as_underscore)]
fn foo(_n: usize) {}
fn main() {
let n: u16 = 256;
foo(n as _);
2025-02-11 17:57:08 +01:00
//~^ as_underscore
2022-06-03 15:59:26 +02:00
let n = 0_u128;
let _n: u8 = n as _;
2025-02-11 17:57:08 +01:00
//~^ as_underscore
2022-06-03 15:59:26 +02:00
}