11 lines
179 B
Rust
11 lines
179 B
Rust
|
// edition:2015
|
||
|
// run-rustfix
|
||
|
|
||
|
#![allow(unused_variables)]
|
||
|
#![deny(keyword_idents)]
|
||
|
|
||
|
fn main() {
|
||
|
let r#dyn = (); //~ ERROR dyn
|
||
|
//~^ WARN hard error in the 2018 edition
|
||
|
}
|