summary refs log tree commit diff
path: root/src/test/ui/future-incompatible-lint-group.rs
blob: 3630f08c937781feeb368012d2c43facb8ede170 (plain)
1
2
3
4
5
6
7
8
#![deny(future_incompatible)]

trait Tr {
    fn f(u8) {} //~ ERROR anonymous parameters are deprecated
                //~^ WARN this was previously accepted
}

fn main() {}