mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:52:40 +00:00
9 lines
117 B
Rust
9 lines
117 B
Rust
extern crate getopts;
|
|
|
|
use std::env;
|
|
|
|
#[test]
|
|
fn main() {
|
|
getopts::Options::new().parse(env::args()).unwrap();
|
|
}
|