blob: 4fa99d955c93550424ba4bc000e155a83f8551d8 [file] [log] [blame]
//@ 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(()) => {}
_ => {}
}
}