These tests specifically test 2015 edition behavior, so ensure that they can only be run with this edition
9 lines
125 B
Rust
9 lines
125 B
Rust
//@ edition: 2015
|
|
//@ check-pass
|
|
|
|
trait Foo {
|
|
#[allow(anonymous_parameters)]
|
|
fn bar(&self, isize) {}
|
|
}
|
|
|
|
fn main() {}
|