Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
recover-ge-as-fat-arrow.rs
blob: 8ef31b230a322df148d9d65682c5b156c4b6cd6a [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn
main
()
{
match
1
{
1
>=
{}
//~ ERROR
_
=>
{
let
_
:
u16
=
2u8
;
}
//~ ERROR
}
}