1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-04-25 12:14:50 +02:00

10 lines
100 B
Rust
Raw Normal View History

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