7 lines
79 B
Rust
7 lines
79 B
Rust
// run-pass
|
|
use std::io::Error;
|
|
|
|
fn main() -> Result<(), Error> {
|
|
Ok(())
|
|
}
|