blob: 297d4b5958727ff4c1ec2f7f53f09b9d24c6f923 [file] [log] [blame]
//! Regression test for https://github.com/rust-lang/rust/issues/13775
//@ edition: 2015
//@ check-pass
trait Foo {
#[allow(anonymous_parameters)]
fn bar(&self, isize) {}
}
fn main() {}