blob: 818d021e60f98a4643d45f9463ef01b8deefa31a [file] [log] [blame]
// --force-warn $LINT_GROUP causes $LINT to warn despite
// $LINT_GROUP being allowed in module
//@ compile-flags: --force-warn rust_2018_idioms
//@ check-pass
#![allow(rust_2018_idioms)]
pub trait SomeTrait {}
pub fn function(_x: Box<SomeTrait>) {}
//~^ WARN trait objects without an explicit `dyn` are deprecated
//~| WARN this is accepted in the current edition
fn main() {}