2021-02-28 12:24:46 -06:00
|
|
|
// compile-flags: --force-warns rust_2018_idioms -Zunstable-options
|
2021-06-01 11:01:13 -05:00
|
|
|
// check-pass
|
|
|
|
|
|
|
|
#![allow(rust_2018_idioms)]
|
|
|
|
|
|
|
|
pub trait SomeTrait {}
|
|
|
|
|
|
|
|
pub fn function(_x: Box<SomeTrait>) {}
|
|
|
|
//~^ WARN trait objects without an explicit `dyn` are deprecated
|
2021-06-16 07:27:44 -05:00
|
|
|
//~| WARN this is accepted in the current edition
|
2021-06-01 11:01:13 -05:00
|
|
|
|
|
|
|
fn main() {}
|