rust/tests/ui/fn/anonymous-parameters-trait-13105.rs
2025-07-31 21:25:49 +05:00

12 lines
188 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/13105
//@ edition: 2015
//@ check-pass
trait Foo {
#[allow(anonymous_parameters)]
fn quux(u8) {}
}
fn main() {}