Skip to content

Commit 7b15b1d

Browse files
super-tupledaboross
authored andcommitted
Remove duplicate test
This test was originally unique, but we accidentally duplicated it with tests now in subtype.rs. Further, when attempting to fix PR comments on this test, we actually fixed them on the other tests. Co-authored-by: David Ross <daboross@daboross.net>
1 parent c9dfb7f commit 7b15b1d

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

tests/test/unify.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -427,19 +427,3 @@ fn quantified_types() {
427427
}
428428
}
429429
}
430-
431-
#[test]
432-
fn subtype() {
433-
test! {
434-
program {
435-
fn foo<'a>(a: &'a (), b: &'a ());
436-
fn bar<'a, 'b>(a: &'a (), b: &'b ());
437-
}
438-
439-
goal {
440-
Subtype(for<'a> fn(&'a (), &'a ()), for<'a, 'b> fn(&'a (), &'b ()))
441-
} yields {
442-
"Unique"
443-
}
444-
}
445-
}

0 commit comments

Comments
 (0)