mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
160 B
Rust
16 lines
160 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::suspicious_doc_comments)]
|
|
|
|
///! a
|
|
///! b
|
|
/// c
|
|
///! d
|
|
pub fn foo() {}
|
|
|
|
///! a
|
|
///! b
|
|
/// c
|
|
///! d
|
|
use std::mem;
|
|
|
|
fn main() {}
|