DnOnith 0d69c6b296 added tests4
tasks requires user to ignore a testcase
2026-03-03 22:32:24 +01:00

12 lines
176 B
Rust

fn main() {}
#[cfg(test)]
mod tests {
#[test]
#[ignore] //this line simply ignores the test
fn ignore_test() {
panic!("The test wasn't ignored");
}
}