mirror of https://github.com/rust-lang/rust
15 lines
382 B
Rust
15 lines
382 B
Rust
// --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() {}
|