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