2021-01-01 15:05:36 +00:00
|
|
|
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 | | /// ```
|
|
|
|
| |_______^
|
|
|
|
|
|
2021-04-26 13:11:08 +00:00
|
|
|
help: `ignore` code blocks require valid Rust code for syntax highlighting; mark blocks that do not contain Rust code as text: ```text
|
|
|
|
--> $DIR/ignore-block-help.rs:3:5
|
|
|
|
|
|
|
|
|
LL | /// ```ignore (to-prevent-tidy-error)
|
|
|
|
| ^^^
|
2021-01-01 15:05:36 +00:00
|
|
|
= note: error from rustc: character literal may only contain one codepoint
|
2022-09-23 18:34:34 +00:00
|
|
|
= note: `#[warn(rustdoc::invalid_rust_codeblocks)]` on by default
|
2021-01-01 15:05:36 +00:00
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|
|
|