blob: dff3d02248b110ed3bb179d91c40c003d41725bc [file] [log] [blame] [edit]
//@ 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() {}