We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc150b commit c47011fCopy full SHA for c47011f
src/test/mir-opt/simplify_try_if_let.rs
@@ -1,4 +1,7 @@
1
// 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
+
5
// EMIT_MIR simplify_try_if_let.{impl#0}-append.SimplifyArmIdentity.diff
6
7
use std::ptr::NonNull;
@@ -19,7 +22,7 @@ impl LinkedList {
19
22
20
23
pub fn append(&mut self, other: &mut Self) {
21
24
match self.tail {
- None => { },
25
+ None => {}
26
Some(mut tail) => {
27
// `as_mut` is okay here because we have exclusive access to the entirety
28
// of both lists.
0 commit comments