7 lines
126 B
Rust
7 lines
126 B
Rust
|
trait Foo {
|
||
|
fn foo([a, b]: [i32; 2]) {}
|
||
|
//~^ ERROR: patterns aren't allowed in methods without bodies
|
||
|
}
|
||
|
|
||
|
fn main() {}
|