2024-10-16 14:18:46 +03:00

9 lines
117 B
Rust

extern crate getopts;
use std::env;
#[test]
fn main() {
getopts::Options::new().parse(env::args()).unwrap();
}