mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
8 lines
171 B
Rust
8 lines
171 B
Rust
fn main() {
|
|
match x {
|
|
//~^ ERROR cannot find value `x` in this scope
|
|
Some::<v>(v) => (),
|
|
//~^ ERROR cannot find type `v` in this scope
|
|
}
|
|
}
|