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