blob: 9e9c4775748ca4200e97828e44c5c1055cb38383 [file] [log] [blame]
#![allow(unused)]
#![warn(clippy::suspicious_doc_comments)]
//@no-rustfix
///! a
//~^ 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`
///! b
/// c
///! d
pub fn foo() {}
///! a
//~^ ERROR: this is an outer doc comment and does not apply to the parent module or crate
///! b
/// c
///! d
use std::mem;
fn main() {}