blob: 9dbd9b6e5266bf4303cb3eae8b09ce9ebf780161 [file] [log] [blame]
// --force-warn $LINT causes $LINT (which is warn-by-default) to warn
// despite allowing all warnings in module
//@ compile-flags: --force-warn dead_code
//@ check-pass
#![allow(warnings)]
fn dead_function() {}
//~^ WARN function `dead_function` is never used
fn main() {}