2021-08-18 04:05:59 -05:00
|
|
|
// --force-warn $LINT causes $LINT (which is warn-by-default) to warn
|
|
|
|
// despite allowing all warnings in module
|
2021-07-24 03:08:33 -05:00
|
|
|
// compile-flags: --force-warn dead_code
|
2021-05-27 12:19:39 -05:00
|
|
|
// check-pass
|
|
|
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
fn dead_function() {}
|
2022-06-09 22:14:24 -05:00
|
|
|
//~^ WARN function `dead_function` is never used
|
2021-05-27 12:19:39 -05:00
|
|
|
|
|
|
|
fn main() {}
|