blob: 5235d53d84a1479dc2a649cd733ab6f428006df3 [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(()) => {}
_ => {}
}
}