Remove old ICE tests that no longer ICE (yay!)

This commit is contained in:
Maybe Waffle 2024-04-19 11:34:37 +00:00
parent 0bbe362901
commit e5a6d8d0cd
2 changed files with 0 additions and 24 deletions

View File

@ -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() {}

View File

@ -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() {}