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