about summary refs log tree commit diff
path: root/tests/ui/rust-2018/dyn-keyword.fixed
blob: e0233382e85ed4dcfec520beb74dc36b254b7d4c (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 this is accepted in the current edition
}