mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
19 lines
610 B
Rust
19 lines
610 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
|
|
//~| WARN trait objects without an explicit `dyn` are deprecated
|
|
//~| WARN this is accepted in the current edition
|
|
//~| WARN trait objects without an explicit `dyn` are deprecated
|
|
//~| WARN this is accepted in the current edition
|
|
|
|
fn main() {}
|