rust/tests/ui/shell-argfiles/shell-argfiles-via-argfile.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
343 B
Rust
Raw Normal View History

2023-12-06 12:25:13 -06:00
// Check to see if we can get parameters from an @argsfile file
//
//@ build-pass
//@ no-auto-check-cfg
2023-12-06 12:25:13 -06:00
//@ 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() {
}