mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-03-31 03:29:19 +00:00
12 lines
176 B
Rust
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");
|
|
}
|
|
}
|