2024-03-05 12:07:37 +01:00
|
|
|
#![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].
|
2025-02-11 17:57:08 +01:00
|
|
|
//~^ doc_markdown
|
2024-03-05 12:07:37 +01:00
|
|
|
pub struct FooBar(u32);
|