1 extern crate getopts; 2 3 use std::env; 4 5 #[test] main()6 fn main() { 7 getopts::Options::new().parse(env::args()).unwrap(); 8 } 9