Skip to content

Commit c47011f

Browse files
Ignore now-broken mir-opt test
1 parent acc150b commit c47011f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/mir-opt/simplify_try_if_let.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
// compile-flags: -Zmir-opt-level=1 -Zunsound-mir-opts
2+
// ignore-test
3+
// FIXME: the pass is unsound and causes ICEs in the MIR validator
4+
25
// EMIT_MIR simplify_try_if_let.{impl#0}-append.SimplifyArmIdentity.diff
36

47
use std::ptr::NonNull;
@@ -19,7 +22,7 @@ impl LinkedList {
1922

2023
pub fn append(&mut self, other: &mut Self) {
2124
match self.tail {
22-
None => { },
25+
None => {}
2326
Some(mut tail) => {
2427
// `as_mut` is okay here because we have exclusive access to the entirety
2528
// of both lists.

0 commit comments

Comments
 (0)