mirror of https://github.com/rust-lang/rust
10 lines
308 B
Rust
10 lines
308 B
Rust
// Check that rustc accepts various version info flags.
|
|
//@ dont-check-compiler-stdout
|
|
//@ revisions: version verbose-version long-verbose-version
|
|
//@ check-pass
|
|
//@[version] compile-flags: -V
|
|
//@[verbose-version] compile-flags: -vV
|
|
//@[long-verbose-version] compile-flags: --version --verbose
|
|
|
|
fn main() {}
|