Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
match
/
issue-12552.rs
blob: b7f71dd1ce354c2500733bb364ec8b52ce265530 [
file
] [
log
] [
blame
] [
edit
]
// this code used to cause an ICE
fn
main
()
{
let
t
=
Err
(
0
);
match
t
{
Some
(
k
)
=>
match
k
{
//~ ERROR mismatched types
a
=>
println
!(
"{}"
,
a
)
},
None
=>
()
//~ ERROR mismatched types
}
}