about summary refs log tree commit diff
path: root/tests/ui/lint/dead-code/alias-in-pat.rs
blob: f22a8f8408b7a9b8c7eb08efb0f9043eaa68f40d (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass

#![deny(dead_code)]

fn main() {
    struct Foo<T> { x: T }
    type Bar = Foo<u32>;
    let spam = |Bar { x }| x != 0;
    println!("{}", spam(Foo { x: 10 }));
}