summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-50571.fixed
blob: 2f8c925b85328c6e3a79da3802761a1943b33c0b (plain)
1
2
3
4
5
6
7
8
// run-rustfix

trait Foo {
    fn foo(_: [i32; 2]) {}
    //~^ ERROR: patterns aren't allowed in methods without bodies
}

fn main() {}