]> git.lizzy.rs Git - rust.git/blob - tests/ui/commandline-argfile-missing.rs
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / 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 }