mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
179 B
Rust
12 lines
179 B
Rust
//@ known-bug: #120600
|
|
#![feature(never_type)]
|
|
#![feature(never_type_fallback)]
|
|
|
|
#[derive(Ord, Eq, PartialOrd, PartialEq)]
|
|
enum E {
|
|
Foo,
|
|
Bar(!, i32, i32),
|
|
}
|
|
|
|
fn main() {}
|