summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/dead-code/lint-dead-code-6.rs
blob: e3074acf129f6bc0e4327c92d573dd1268bea23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![deny(dead_code)]

struct UnusedStruct; //~ ERROR struct `UnusedStruct` is never constructed
impl UnusedStruct {
    fn unused_impl_fn_1() { //~ ERROR associated function `unused_impl_fn_1` is never used
        println!("blah");
    }

    fn unused_impl_fn_2(var: i32) { //~ ERROR associated function `unused_impl_fn_2` is never used
        println!("foo {}", var);
    }

    fn unused_impl_fn_3( //~ ERROR associated function `unused_impl_fn_3` is never used
        var: i32,
    ) {
        println!("bar {}", var);
    }
}

fn main() {}