-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #85501 - jyn514:invalid-doc-attrs, r=varkor
Fix `deny(invalid_doc_attributes)` Fixes #85497.
- Loading branch information
Showing
7 changed files
with
39 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
// check-pass | ||
// run-rustfix | ||
|
||
#![deny(warnings)] | ||
#![feature(doc_notable_trait)] | ||
|
||
#[doc(notable_trait)] | ||
//~^ WARN unknown `doc` attribute `spotlight` | ||
//~^ ERROR unknown `doc` attribute `spotlight` | ||
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
trait MyTrait {} |
This file contains 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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
// check-pass | ||
// run-rustfix | ||
|
||
#![deny(warnings)] | ||
#![feature(doc_notable_trait)] | ||
|
||
#[doc(spotlight)] | ||
//~^ WARN unknown `doc` attribute `spotlight` | ||
//~^ ERROR unknown `doc` attribute `spotlight` | ||
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
trait MyTrait {} |
This file contains 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 |
---|---|---|
@@ -1,14 +1,19 @@ | ||
warning: unknown `doc` attribute `spotlight` | ||
--> $DIR/doc-spotlight.rs:6:7 | ||
error: unknown `doc` attribute `spotlight` | ||
--> $DIR/doc-spotlight.rs:5:7 | ||
| | ||
LL | #[doc(spotlight)] | ||
| ^^^^^^^^^ help: use `notable_trait` instead | ||
| | ||
= note: `#[warn(invalid_doc_attributes)]` on by default | ||
note: the lint level is defined here | ||
--> $DIR/doc-spotlight.rs:2:9 | ||
| | ||
LL | #![deny(warnings)] | ||
| ^^^^^^^^ | ||
= note: `#[deny(invalid_doc_attributes)]` implied by `#[deny(warnings)]` | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730> | ||
= note: `doc(spotlight)` was renamed to `doc(notable_trait)` | ||
= note: `doc(spotlight)` is now a no-op | ||
|
||
warning: 1 warning emitted | ||
error: aborting due to previous error | ||
|
This file contains 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,7 @@ | ||
#![deny(invalid_doc_attributes)] | ||
//~^ NOTE defined here | ||
#![doc(x)] | ||
//~^ ERROR unknown `doc` attribute `x` | ||
//~| WARNING will become a hard error | ||
//~| NOTE see issue #82730 | ||
fn main() {} |
This file contains 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,16 @@ | ||
error: unknown `doc` attribute `x` | ||
--> $DIR/deny-invalid-doc-attrs.rs:3:8 | ||
| | ||
LL | #![doc(x)] | ||
| ^ | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/deny-invalid-doc-attrs.rs:1:9 | ||
| | ||
LL | #![deny(invalid_doc_attributes)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #82730 <https://github.com/rust-lang/rust/issues/82730> | ||
|
||
error: aborting due to previous error | ||
|