about summary refs log tree commit diff
path: root/tests/ui/errors/issue-89280-emitter-overflow-splice-lines.rs
blob: dff3d02248b110ed3bb179d91c40c003d41725bc (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass

trait X {
    fn test(x: u32, (
//~^ WARN anonymous parameters are deprecated and will be removed in the next edition
//~^^ WARN this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
    )) {}
}

fn main() {}