blob: 9b3dee11d9b79538d64081549048d734603dd154 [file] [log] [blame] [edit]
//@ check-pass
// Make sure several unnamed function parameters don't conflict with each other
trait Tr {
#[allow(anonymous_parameters)]
fn f(u8, u8) {}
}
fn main() {
}