Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-50571.fixed
blob: 37ed729be81681803a1087a37bdfca1b6ba6130f [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#![allow(dead_code)]
trait
Foo
{
fn foo
(
_
:
[
i32
;
2
])
{}
//~^ ERROR: patterns aren't allowed in methods without bodies
}
fn main
()
{}