forked from Rust-related/rustlings
10 lines
100 B
Rust
10 lines
100 B
Rust
fn main() {}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn fails() {
|
|
assert!(false);
|
|
}
|
|
}
|