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

12 lines
205 B
Rust

fn main() {}
#[cfg(test)]
mod tests {
//TODO make sure this test does not run
#[test]
fn ignore_test() {
// Do not change this line
panic!("The test wasn't ignored");
}
}