1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 00:08:06 +02:00
rustlings/tests/test_exercises/exercises/test_failure.rs
2024-07-25 16:14:38 +02:00

10 lines
100 B
Rust

fn main() {}
#[cfg(test)]
mod tests {
#[test]
fn fails() {
assert!(false);
}
}