Skip to content

Commit a9f1e29

Browse files
committed
Auto merge of #26253 - steveklabnik:remove_old_ignored_tests, r=brson
Two commits here: one which removes a bunch of tests, and re-enables a few that work. Second updates the syntax of one of the failing tests. It still doesn't pass, but at least it compiles.
2 parents 6d6f086 + 13b9a72 commit a9f1e29

36 files changed

+1
-11651
lines changed

src/test/compile-fail/dead-code-closure-bang.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
fn main() {
1616
let x = || panic!();
1717
x();
18-
std::io::println("Foo bar"); //~ ERROR: unreachable statement
18+
println!("Foo bar"); //~ ERROR: unreachable statement
1919
}

src/test/compile-fail/issue-15167.rs

-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@
99
// except according to those terms.
1010

1111
// macro f should not be able to inject a reference to 'n'.
12-
//
13-
// Ignored because `for` loops are not hygienic yet; they will require special
14-
// handling since they introduce a new pattern binding position.
15-
16-
// ignore-test
1712

1813
macro_rules! f { () => (n) }
1914

src/test/compile-fail/issue-2478.rs

-17
This file was deleted.

src/test/compile-fail/redundant-link-args.rs

-29
This file was deleted.

src/test/compile-fail/struct-field-assignability.rs

-21
This file was deleted.

src/test/debuginfo/gdb-pretty-struct-and-enums.rs

-189
This file was deleted.

src/test/debuginfo/generic-trait-generic-static-default-method.rs

-52
This file was deleted.

src/test/debuginfo/issue11600.rs

-30
This file was deleted.

0 commit comments

Comments
 (0)