2018-09-15 18:18:49 +01:00
|
|
|
// edition:2015
|
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
#![deny(keyword_idents)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let dyn = (); //~ ERROR dyn
|
2021-06-15 17:16:21 +02:00
|
|
|
//~^ WARN this is valid in the current edition
|
2018-09-15 18:18:49 +01:00
|
|
|
}
|