1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-15 00:00:03 +03:00
rustlings/tests/test_exercises/exercises/test_success.rs
2024-07-25 15:12:14 +02:00

10 lines
118 B
Rust

fn main() {
println!("Output from `main` function");
}
#[cfg(test)]
mod tests {
#[test]
fn passes() {}
}