mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
Remove old ICE tests that no longer ICE (yay!)
This commit is contained in:
parent
0bbe362901
commit
e5a6d8d0cd
@ -1,13 +0,0 @@
|
||||
//@ known-bug: #120600
|
||||
#![feature(never_type, never_type_fallback)]
|
||||
|
||||
enum E { Bar(!) }
|
||||
|
||||
fn f(a: &E, b: &E) {
|
||||
match (a, b) {
|
||||
(E::Bar(a), E::Bar(b)) => { *a == *b; }
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn main() {}
|
@ -1,11 +0,0 @@
|
||||
//@ known-bug: #120600
|
||||
#![feature(never_type)]
|
||||
#![feature(never_type_fallback)]
|
||||
|
||||
#[derive(Ord, Eq, PartialOrd, PartialEq)]
|
||||
enum E {
|
||||
Foo,
|
||||
Bar(!, i32, i32),
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Reference in New Issue
Block a user