rust/tests/ui/error-codes/E0416.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
76 B
Rust
Raw Normal View History

2016-08-15 06:58:28 -05:00
fn main() {
match (1, 2) {
(x, x) => {} //~ ERROR E0416
}
}