mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00
12 lines
197 B
Rust
12 lines
197 B
Rust
//! 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() {}
|