rust-clippy/tests/ui/doc/issue_10262.rs

13 lines
370 B
Rust
Raw Normal View History

2024-03-12 14:15:19 +00:00
#![warn(clippy::doc_markdown)]
// Should only warn for the first line!
/// AviSynth documentation:
//~^ ERROR: item in documentation is missing backticks
///
/// > AvisynthPluginInit3 may be called more than once with different IScriptEnvironments.
///
/// <blockquote>bla AvisynthPluginInit3 bla</blockquote>
///
/// <q>bla AvisynthPluginInit3 bla</q>
2024-03-12 14:15:19 +00:00
pub struct Foo;