mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 07:00:37 +00:00
These tests specifically test 2015 edition behavior, so ensure that they can only be run with this edition
10 lines
125 B
Rust
10 lines
125 B
Rust
//@ edition: 2015
|
|
//@ check-pass
|
|
|
|
trait Foo {
|
|
#[allow(anonymous_parameters)]
|
|
fn bar(&self, isize) {}
|
|
}
|
|
|
|
fn main() {}
|