Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
closures
/
closure-no-fn-4.rs
blob: 275bff645dba644965a56dca64fd9e159e5dc82a [
file
] [
log
] [
blame
]
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
};
}