blob: 5c770c1c38ad9418d611c713474d1dfed9fe643c [file] [log] [blame] [edit]
//@ edition:2015
// --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() {}