mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 05:30:47 +00:00
10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
trait Foo {
|
|
fn foo(_: [i32; 2]) {}
|
|
//~^ ERROR: patterns aren't allowed in methods without bodies
|
|
}
|
|
|
|
fn main() {}
|