summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/doc/issue_9473.fixed
blob: 276ce7620ca763504d459768924e2f9586940340 (plain)
1
2
3
4
5
6
7
8
9
#![warn(clippy::doc_markdown)]

// Should not warn!
/// Blah blah blah <code>[FooBar]&lt;[FooBar]&gt;</code>.
pub struct Foo(u32);

// Should warn.
/// Blah blah blah <code>[FooBar]&lt;[FooBar]&gt;</code>[`FooBar`].
pub struct FooBar(u32);