File: smoke.rs

package info (click to toggle)
rust-getopts 0.2.21-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 117 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
extern crate getopts;

use std::env;

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