Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
closures
/
closure-no-fn-4.rs
blob: 275bff645dba644965a56dca64fd9e159e5dc82a [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
b
=
2
;
let
_
:
fn
(
usize
)
->
usize
=
match
true
{
true
=>
|
a
|
a
+
1
,
false
=>
|
a
|
a
-
b
,
//~^ ERROR `match` arms have incompatible types
};
}