2023-04-11 08:31:08 -05:00
|
|
|
#![allow(unused)]
|
|
|
|
#![warn(clippy::suspicious_doc_comments)]
|
2023-08-24 14:32:12 -05:00
|
|
|
//@no-rustfix
|
2023-04-11 08:31:08 -05:00
|
|
|
///! a
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: this is an outer doc comment and does not apply to the parent module or crate
|
|
|
|
//~| NOTE: `-D clippy::suspicious-doc-comments` implied by `-D warnings`
|
2023-04-11 08:31:08 -05:00
|
|
|
///! b
|
|
|
|
/// c
|
|
|
|
///! d
|
|
|
|
pub fn foo() {}
|
|
|
|
|
|
|
|
///! a
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: this is an outer doc comment and does not apply to the parent module or crate
|
2023-04-11 08:31:08 -05:00
|
|
|
///! b
|
|
|
|
/// c
|
|
|
|
///! d
|
|
|
|
use std::mem;
|
|
|
|
|
|
|
|
fn main() {}
|