mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-24 04:46:58 +00:00
10 lines
238 B
Rust
10 lines
238 B
Rust
#![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);
|