-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
coretest: Downgrade deny to warn #60201
Conversation
r? @Kimundi (rust_highfive has picked a reviewer for you, use r? to override) |
This doesn't sound right. Isn't this what |
Why not? I have set |
Cc @rust-lang/libs -- needs someone to review. |
@bors: r+ |
📌 Commit 4cb6d1c has been approved by |
coretest: Downgrade deny to warn The `deny` causes a build failure in https://github.com/RalfJung/miri-test-libstd. Since we use `-D warnings` for rustc builds, `warn` should be enough to lead to compile errors here, without impeding external builds.
Rollup of 5 pull requests Successful merges: - #60176 (Explain error when yielding a reference to a local variable) - #60201 (coretest: Downgrade deny to warn) - #60562 (Add #[doc(hidden)] attribute on compiler generated module.) - #60710 (Use `delay_span_bug` for error cases when checking `AnonConst` parent) - #60770 (add impl_trait_in_bindings to INCOMPLETE_FEATURES) Failed merges: r? @ghost
The
deny
causes a build failure in https://github.com/RalfJung/miri-test-libstd. Since we use-D warnings
for rustc builds,warn
should be enough to lead to compile errors here, without impeding external builds.