summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-6117.rs
blob: 5235d53d84a1479dc2a649cd733ab6f428006df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616

enum Either<T, U> { Left(T), Right(U) }

pub fn main() {
    match Either::Left(Box::new(17)) {
        Either::Right(()) => {}
        _ => {}
    }
}