1 2 3 4 5 6 7 8 9 10 11 12
#![deny(dead_code)] struct MyFoo; impl MyFoo { const BAR: u32 = 1; //~^ ERROR associated const is never used: `BAR` } fn main() { let _: MyFoo = MyFoo; }