14 lines
230 B
Rust
14 lines
230 B
Rust
#![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() {}
|