rust/tests/ui/resolve/issue-5927.rs

8 lines
213 B
Rust

fn main() {
let z = match 3 {
x(1) => x(1) //~ ERROR cannot find tuple struct or tuple variant `x` in this scope
//~^ ERROR cannot find function `x` in this scope
};
assert!(z == 3);
}