rust/tests/ui/issues/issue-6117.rs
2023-01-11 09:32:08 +00:00

13 lines
218 B
Rust

// 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(()) => {}
_ => {}
}
}