mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
188 B
Rust
11 lines
188 B
Rust
// edition:2015
|
|
// run-rustfix
|
|
|
|
#![allow(unused_variables)]
|
|
#![deny(keyword_idents)]
|
|
|
|
fn main() {
|
|
let r#dyn = (); //~ ERROR dyn
|
|
//~^ WARN this is accepted in the current edition
|
|
}
|