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