about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/as_underscore.rs
blob: df500c4c4df1eb727e5500e7a5e9ebd9e55b6033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![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
}