We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98dabac commit 2d7b4b6Copy full SHA for 2d7b4b6
library/std/src/prelude/v1.rs
@@ -66,6 +66,9 @@ mod ambiguous_macro_only_std {
66
mod vec {}
67
#[allow(hidden_glob_reexports)]
68
mod panic {}
69
+ // Building std without the allow exported_private_dependencies will create warnings, but then
70
+ // clippy claims its a useless_attribute. So silence both.
71
+ #[allow(clippy::useless_attribute)]
72
#[allow(exported_private_dependencies)]
73
#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
74
pub use crate::*;
0 commit comments