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();
|
|
}
|