mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-19 04:11:11 +00:00
7 lines
84 B
Rust
7 lines
84 B
Rust
// run-pass
|
|
use std::io::Error;
|
|
|
|
fn main() -> Result<(), Box<Error>> {
|
|
Ok(())
|
|
}
|