]> git.lizzy.rs Git - rust.git/blob - src/test/ui/commandline-argfile-missing.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / commandline-argfile-missing.rs
1 // Check to see if we can get parameters from an @argsfile file
2 //
3 // normalize-stderr-test: "os error \d+" -> "os error $$ERR"
4 // normalize-stderr-test: "commandline-argfile-missing.args:[^(]*" -> "commandline-argfile-missing.args: $$FILE_MISSING "
5 // compile-flags: --cfg cmdline_set @{{src-base}}/commandline-argfile-missing.args
6
7 #[cfg(not(cmdline_set))]
8 compile_error!("cmdline_set not set");
9
10 #[cfg(not(unbroken))]
11 compile_error!("unbroken not set");
12
13 fn main() {
14 }