]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0416.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / error-codes / E0416.rs
1 fn main() {
2     match (1, 2) {
3         (x, x) => {} //~ ERROR E0416
4     }
5 }