mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
11 lines
190 B
Plaintext
11 lines
190 B
Plaintext
//@ 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
|
|
}
|