mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
178 B
Rust
11 lines
178 B
Rust
// 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() {
|
|
}
|