-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Rework no_coverage
to coverage(off)
#114656
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
Changes from all commits
8e03371
de1600d
679267f
726a7b9
0ca6c38
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,6 +136,9 @@ declare_features! ( | |
Some("subsumed by `#![feature(allocator_internals)]`")), | ||
/// Allows use of unary negate on unsigned integers, e.g., -e for e: u8 | ||
(removed, negate_unsigned, "1.0.0", Some(29645), None, None), | ||
/// Allows `#[no_coverage]` on functions. | ||
/// The feature was renamed to `coverage` and the attribute to `#[coverage(on|off)]` | ||
(removed, no_coverage, "CURRENT_RUSTC_VERSION", Some(84605), None, Some("renamed to `coverage`")), | ||
Comment on lines
+139
to
+141
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I only just noticed that this wasn't updated when the feature flag was renamed from (This also affects the relevant UI tests.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've filed PR #115832. |
||
/// Allows `#[no_debug]`. | ||
(removed, no_debug, "1.43.0", Some(29721), None, Some("removed due to lack of demand")), | ||
/// Allows using `#[on_unimplemented(..)]` on traits. | ||
|
Uh oh!
There was an error while loading. Please reload this page.