blob: 276ce7620ca763504d459768924e2f9586940340 (
plain)
1
2
3
4
5
6
7
8
9
|
#![warn(clippy::doc_markdown)]
// Should not warn!
/// Blah blah blah <code>[FooBar]<[FooBar]></code>.
pub struct Foo(u32);
// Should warn.
/// Blah blah blah <code>[FooBar]<[FooBar]></code>[`FooBar`].
pub struct FooBar(u32);
|