]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_mir_transform/src/match_branches.rs
fix most compiler/ doctests
[rust.git] / compiler / rustc_mir_transform / src / match_branches.rs
index 3c14a324c36ff2bacac3a60ee3e41efa393429da..7cd7d26328a1a722cee058a6486a40cc7ddd4e92 100644 (file)
@@ -14,7 +14,7 @@
 ///
 /// For example:
 ///
-/// ```rust
+/// ```ignore (MIR)
 /// bb0: {
 ///     switchInt(move _3) -> [42_isize: bb1, otherwise: bb2];
 /// }
@@ -32,7 +32,7 @@
 ///
 /// into:
 ///
-/// ```rust
+/// ```ignore (MIR)
 /// bb0: {
 ///    _2 = Eq(move _3, const 42_isize);
 ///    goto -> bb3;