-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Add E0788 for improper #[no_coverage] usage #97495
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
A `#[no_coverage]` attribute was incorrectly placed on something that couldn't | ||
be covered. | ||
|
||
Example of erroneous code: | ||
|
||
```compile_fail,E0788 | ||
#[no_coverage] | ||
struct Foo; | ||
|
||
#[no_coverage] | ||
const FOO: Foo = Foo; | ||
``` | ||
|
||
`#[no_coverage]` tells the compiler to not generate coverage instrumentation for | ||
a piece of code when the `-C instrument-coverage` flag is passed. Things like | ||
structs and consts are not coverable code, and thus cannot do anything with this | ||
attribute. | ||
|
||
If you wish to apply this attribute to all methods in an impl or module, | ||
manually annotate each method; it is not possible to annotate the entire impl | ||
with a `#[no_coverage]` attribute. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#![feature(extern_types)] | ||
#![feature(no_coverage)] | ||
#![feature(type_alias_impl_trait)] | ||
#![warn(unused_attributes)] | ||
clarfonthey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
trait Trait { | ||
clarfonthey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#[no_coverage] //~ ERROR `#[no_coverage]` must be applied to coverable code | ||
const X: u32; | ||
|
||
#[no_coverage] //~ ERROR `#[no_coverage]` must be applied to coverable code | ||
type T; | ||
|
||
type U; | ||
} | ||
|
||
impl Trait for () { | ||
const X: u32 = 0; | ||
|
||
#[no_coverage] //~ ERROR `#[no_coverage]` must be applied to coverable code | ||
type T = Self; | ||
|
||
#[no_coverage] //~ ERROR `#[no_coverage]` must be applied to coverable code | ||
type U = impl Trait; //~ ERROR unconstrained opaque type | ||
} | ||
|
||
extern "C" { | ||
#[no_coverage] //~ ERROR `#[no_coverage]` must be applied to coverable code | ||
static X: u32; | ||
|
||
#[no_coverage] //~ ERROR `#[no_coverage]` must be applied to coverable code | ||
type T; | ||
} | ||
|
||
#[no_coverage] | ||
fn main() { | ||
#[no_coverage] //~ WARN `#[no_coverage]` can only be applied at the function level, not on code directly | ||
let _ = (); | ||
|
||
match () { | ||
#[no_coverage] //~ WARN `#[no_coverage]` can only be applied at the function level, not on code directly | ||
() => (), | ||
} | ||
|
||
#[no_coverage] //~ WARN `#[no_coverage]` can only be applied at the function level, not on code directly | ||
return (); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
warning: `#[no_coverage]` can only be applied at the function level, not on code directly | ||
--> $DIR/no-coverage.rs:36:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/no-coverage.rs:4:9 | ||
| | ||
LL | #![warn(unused_attributes)] | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
warning: `#[no_coverage]` can only be applied at the function level, not on code directly | ||
--> $DIR/no-coverage.rs:40:9 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
|
||
warning: `#[no_coverage]` can only be applied at the function level, not on code directly | ||
--> $DIR/no-coverage.rs:44:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
|
||
error[E0788]: `#[no_coverage]` must be applied to coverable code | ||
--> $DIR/no-coverage.rs:7:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
LL | const X: u32; | ||
| ------------- not coverable code | ||
|
||
error[E0788]: `#[no_coverage]` must be applied to coverable code | ||
--> $DIR/no-coverage.rs:10:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
LL | type T; | ||
| ------- not coverable code | ||
|
||
error[E0788]: `#[no_coverage]` must be applied to coverable code | ||
--> $DIR/no-coverage.rs:19:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
LL | type T = Self; | ||
| -------------- not coverable code | ||
|
||
error[E0788]: `#[no_coverage]` must be applied to coverable code | ||
--> $DIR/no-coverage.rs:22:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
LL | type U = impl Trait; | ||
| -------------------- not coverable code | ||
|
||
error[E0788]: `#[no_coverage]` must be applied to coverable code | ||
--> $DIR/no-coverage.rs:27:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
LL | static X: u32; | ||
| -------------- not coverable code | ||
|
||
error[E0788]: `#[no_coverage]` must be applied to coverable code | ||
--> $DIR/no-coverage.rs:30:5 | ||
| | ||
LL | #[no_coverage] | ||
| ^^^^^^^^^^^^^^ | ||
LL | type T; | ||
| ------- not coverable code | ||
|
||
error: unconstrained opaque type | ||
--> $DIR/no-coverage.rs:23:14 | ||
| | ||
LL | type U = impl Trait; | ||
| ^^^^^^^^^^ | ||
| | ||
= note: `U` must be used in combination with a concrete type within the same module | ||
|
||
error: aborting due to 7 previous errors; 3 warnings emitted | ||
|
||
For more information about this error, try `rustc --explain E0788`. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.