]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_typeck/src/impl_wf_check/min_specialization.rs
fix most compiler/ doctests
[rust.git] / compiler / rustc_typeck / src / impl_wf_check / min_specialization.rs
index 6cef3e9d9409eb1750595df7047d20b8240a6ed7..22db15f4d4e8e77ceb058aaa75fed098fa1aac9f 100644 (file)
@@ -29,7 +29,7 @@
 //!
 //! Suppose we have the following always applicable impl:
 //!
-//! ```rust
+//! ```ignore (illustrative)
 //! impl<T> SpecExtend<T> for std::vec::IntoIter<T> { /* specialized impl */ }
 //! impl<T, I: Iterator<Item=T>> SpecExtend<T> for I { /* default impl */ }
 //! ```