Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
187 B
Rust
12 lines
187 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
|
|
enum Either<T, U> { Left(T), Right(U) }
|
|
|
|
pub fn main() {
|
|
match Either::Left(Box::new(17)) {
|
|
Either::Right(()) => {}
|
|
_ => {}
|
|
}
|
|
}
|