mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14d56e8338
Most of these changes either add revision names that were apparently missing, or explicitly mark a revision name as currently unused.
9 lines
308 B
Rust
9 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() {}
|