blob: 53ac34c27248e0c44bad9416fdc993b4570efbd1 [file] [log] [blame]
#![warn(clippy::ignore_without_reason)]
fn main() {}
#[test]
fn unignored_test() {}
#[test]
#[ignore = "Some good reason"]
fn ignored_with_reason() {}
#[test]
#[ignore] //~ ignore_without_reason
fn ignored_without_reason() {}