summary refs log tree commit diff
path: root/src/test/ui/lint/force-warn/force-warn-group.rs
blob: 0198610b78e10c8e8fecb7a94588a324c6cf2804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: --force-warn rust_2018_idioms -Zunstable-options
// 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() {}