]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_error_codes/src/error_codes/E0734.md
Rollup merge of #96882 - jackh726:no-subst, r=oli-obk
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0734.md
index 4b8e89a70604d0974f5630271e3632c709b3a066..b912061ec42ccbaf43a067f3b8adec0cb457556e 100644 (file)
@@ -3,7 +3,6 @@ A stability attribute has been used outside of the standard library.
 Erroneous code example:
 
 ```compile_fail,E0734
-#[rustc_deprecated(since = "b", reason = "text")] // invalid
 #[stable(feature = "a", since = "b")] // invalid
 #[unstable(feature = "b", issue = "none")] // invalid
 fn foo(){}