blob: 171dab15fe7169a3571c57db2c92eb2753147f25 [file] [log] [blame]
//! 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() {}