about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/doc/issue_9473.fixed
blob: 2d910c43b26323d26f07b15e3255ec8ac2084f52 (plain)
1
2
3
4
5
6
7
8
9
10
#![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`].
//~^ doc_markdown
pub struct FooBar(u32);