Sign in
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
pattern
/
pattern-ident-path-generics.rs
blob: 48c02623f28f210dd171c6d4a98a7c1b1f5aca17 [
file
]
fn
main
()
{
match
Some
(
"foo"
)
{
None
::<
isize
>
=>
{}
//~ ERROR mismatched types
Some
(
_
)
=>
{}
}
}