forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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 rust-lang#80580 - GuillaumeGomez:suggestion-ignore-co…
…deblock-warn, r=jyn514 Add suggestion for "ignore" doc code block Part of rust-lang#30032. This PR adds a suggestion to help users when they have a "ignore" doc code block which is invalid rust code. r? `@jyn514`
- Loading branch information
Showing
4 changed files
with
45 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// check-pass | ||
|
||
/// ```ignore (to-prevent-tidy-error) | ||
/// let heart = '❤️'; | ||
/// ``` | ||
//~^^^ WARN | ||
pub struct X; |
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,17 @@ | ||
warning: could not parse code block as Rust code | ||
--> $DIR/ignore-block-help.rs:3:5 | ||
| | ||
LL | /// ```ignore (to-prevent-tidy-error) | ||
| _____^ | ||
LL | | /// let heart = '❤️'; | ||
LL | | /// ``` | ||
| |_______^ | ||
| | ||
= note: error from rustc: character literal may only contain one codepoint | ||
help: `ignore` code blocks require valid Rust code for syntax highlighting. Mark blocks that do not contain Rust code as text | ||
| | ||
LL | /// ```text,ignore (to-prevent-tidy-error) | ||
| ^^^^^^^^ | ||
|
||
warning: 1 warning emitted | ||
|