blob: a209f794b105b7f0c538ef61ecb07934ef65ddb8 [file] [log] [blame] [edit]
//@no-rustfix
#![deny(clippy::should_panic_without_expect)]
#[test]
#[should_panic]
//~^ should_panic_without_expect
fn no_message() {}
#[test]
#[should_panic]
#[cfg(not(test))]
fn no_message_cfg_false() {}
#[test]
#[should_panic = "message"]
fn metastr() {}
#[test]
#[should_panic(expected = "message")]
fn metalist() {}
fn main() {}