mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
23 lines
492 B
Rust
23 lines
492 B
Rust
fn a() {
|
|
[0; [|_: _ &_| ()].len()]
|
|
//~^ ERROR expected `,`, found `&`
|
|
//~| ERROR type annotations needed
|
|
}
|
|
|
|
fn b() {
|
|
[0; [|f @ &ref _| {} ; 0 ].len() ];
|
|
//~^ ERROR expected identifier, found reserved identifier `_`
|
|
}
|
|
|
|
fn c() {
|
|
[0; [|&_: _ &_| {}; 0 ].len()]
|
|
//~^ ERROR expected `,`, found `&`
|
|
//~| ERROR type annotations needed
|
|
}
|
|
|
|
fn d() {
|
|
[0; match [|f @ &ref _| () ] {} ]
|
|
//~^ ERROR expected identifier, found reserved identifier `_`
|
|
}
|
|
|
|
fn main() {}
|