]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unique/unique-match-discrim.rs
Merge commit 'efa8f5521d3813cc897ba29ea0ef98c7aef66bb6' into rustfmt-subtree
[rust.git] / src / test / ui / unique / unique-match-discrim.rs
1 // run-pass
2 #![allow(dead_code)]
3 // Issue #961
4
5 // pretty-expanded FIXME #23616
6
7 fn altsimple() {
8     match Box::new(true) {
9       _ => { }
10     }
11 }
12 pub fn main() { }