13 lines
290 B
Rust
13 lines
290 B
Rust
|
// compile-flags: --force-warns 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 was previously accepted by the compiler
|
||
|
|
||
|
fn main() {}
|