Skip to content

Commit 95a1351

Browse files
committed
mark previously hanging tests as good to go
1 parent 62c71cc commit 95a1351

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

Diff for: tests/ui/recursion/issue-83150.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
//~ ERROR overflow evaluating the requirement `Map<&mut std::ops::Range<u8>, {closure@$DIR/issue-83150.rs:14:24: 14:27}>: Iterator`
1+
//~ ERROR overflow evaluating the requirement `Map<&mut std::ops::Range<u8>, {closure@$DIR/issue-83150.rs:13:24: 13:27}>: Iterator`
22
//@ build-fail
33
//@ compile-flags: -Copt-level=0
44
//@ normalize-stderr-test: "long-type-\d+" -> "long-type-hash"
5-
//@ ignore-compare-mode-next-solver (hangs)
65

76
fn main() {
87
let mut iter = 0u8..1;

Diff for: tests/ui/type-alias-impl-trait/self-referential-3.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//@ ignore-compare-mode-next-solver (hangs)
2-
31
#![feature(type_alias_impl_trait)]
42

53
type Bar<'a, 'b> = impl PartialEq<Bar<'a, 'b>> + std::fmt::Debug;

Diff for: tests/ui/type-alias-impl-trait/self-referential-4.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//@ ignore-compare-mode-next-solver (hangs)
2-
31
#![feature(type_alias_impl_trait)]
42

53
type Bar<'a, 'b> = impl PartialEq<Bar<'b, 'static>> + std::fmt::Debug;

Diff for: tests/ui/type-alias-impl-trait/self-referential.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//@ ignore-compare-mode-next-solver (hangs)
2-
31
#![feature(type_alias_impl_trait)]
42

53
type Bar<'a, 'b> = impl PartialEq<Bar<'b, 'a>> + std::fmt::Debug;

0 commit comments

Comments
 (0)