summary refs log tree commit diff
path: root/src/test/ui/rust-2018/dyn-keyword.fixed
blob: e9cda1af939321d435923db4d948ca52fe6fb0af (plain)
1
2
3
4
5
6
7
8
9
10
// edition:2015
// run-rustfix

#![allow(unused_variables)]
#![deny(keyword_idents)]

fn main() {
    let r#dyn = (); //~ ERROR dyn
    //~^ WARN hard error in the 2018 edition
}