1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-19 00:00:01 +03:00
rustlings/tests/test_exercises/exercises/test_failure.rs

10 lines
100 B
Rust
Raw Normal View History

2024-07-25 16:12:14 +03:00
fn main() {}
#[cfg(test)]
mod tests {
#[test]
fn fails() {
2024-07-25 17:14:38 +03:00
assert!(false);
2024-07-25 16:12:14 +03:00
}
}