Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
tests
/
ui
/
match
/
option-result-mismatch-11844.rs
blob: 24a2004134df23020895093936d9c720e7b3bb8b [
file
]
//! Regression test for https://github.com/rust-lang/rust/issues/11844
fn
main
()
{
let
a
=
Some
(
Box
::
new
(
1
));
match
a
{
Ok
(
a
)
=>
//~ ERROR: mismatched types
println
!(
"{}"
,
a
),
None
=>
panic
!()
}
}