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 
main()13 fn main() {
14 }
15