Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
match
/
match-ill-type2.rs
blob: 6612f6e392fc7e52f11b3aec479c3ee2b8ad65e7 [
file
] [
log
] [
blame
]
fn
main
()
{
match
1i32
{
1i32
=>
1
,
2u32
=>
1
,
//~ ERROR mismatched types
_
=>
2
,
};
}