about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-match-discrim.rs
blob: c1b7b15c7c41de018ee2c24b640cd1518c71cdec (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass
#![allow(dead_code)]
// Issue #961


fn altsimple() {
    match Box::new(true) {
      _ => { }
    }
}
pub fn main() { }