rust/src/test/ui/lint/force-warn/force-warn-group.rs

13 lines
304 B
Rust
Raw Normal View History

// 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() {}