mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
11 lines
186 B
Rust
11 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
|
|
}
|