about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/doc/issue_10262.rs
blob: e2cbd938d5d79e0d07e3c83897820425c7108f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![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>
pub struct Foo;