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