rustc/tests/ui/issues/issue-50571.fixed
2024-06-21 09:39:33 +02:00

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() {}