Sign in
android
/
toolchain
/
rustc
/
3b664ca54b09788037e50e8bf4cb1881bcd6cb8d
/
.
/
src
/
test
/
ui
/
issues
/
issue-3680.rs
blob: 8912e7a18ac3b6f673b12968d16a8a3f748e1c10 [
file
] [
log
] [
blame
]
fn
main
()
{
match
None
{
Err
(
_
)
=>
()
//~^ ERROR mismatched types
//~| expected enum `Option<_>`
//~| found enum `std::result::Result<_, _>`
//~| expected enum `Option`, found enum `std::result::Result`
}
}