2025-07-24 17:52:22 +05:00
|
|
|
//! Regression test for https://github.com/rust-lang/rust/issues/13775
|
|
|
|
|
|
2025-06-03 09:54:30 +02:00
|
|
|
//@ edition: 2015
|
2019-11-04 00:00:00 +00:00
|
|
|
//@ check-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-04-26 10:24:47 -07:00
|
|
|
trait Foo {
|
2017-06-25 05:29:10 +03:00
|
|
|
#[allow(anonymous_parameters)]
|
2015-03-25 17:06:52 -07:00
|
|
|
fn bar(&self, isize) {}
|
2014-04-26 10:24:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|