Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
rust-2018
/
dyn-keyword.rs
blob: 876e83b5e89e640fa839f6bc3281152ec89ce1c6 [
file
] [
log
] [
blame
]
//@ edition:2015
//@ run-rustfix
#![
allow
(
unused_variables
)]
#![
deny
(
keyword_idents
)]
fn
main
()
{
let
dyn
=
();
//~ ERROR dyn
//~^ WARN this is accepted in the current edition
}