mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
343 B
Rust
12 lines
343 B
Rust
// Check to see if we can get parameters from an @argsfile file
|
|
//
|
|
//@ build-pass
|
|
//@ no-auto-check-cfg
|
|
//@ compile-flags: @{{src-base}}/shell-argfiles/shell-argfiles-via-argfile.args @shell:{{src-base}}/shell-argfiles/shell-argfiles-via-argfile-shell.args
|
|
|
|
#[cfg(not(shell_args_set))]
|
|
compile_error!("shell_args_set not set");
|
|
|
|
fn main() {
|
|
}
|