]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/commandline-argfile-missing.rs
make unaligned_refereces future-incompat lint warn-by-default, and remove the safe_pa...
[rust.git] / src / test / rustdoc-ui / commandline-argfile-missing.rs
1 // Check to see if we can get parameters from an @argsfile file
2 //
3 // ignore-tidy-linelength
4 // normalize-stderr-test: "os error \d+" -> "os error $$ERR"
5 // normalize-stderr-test: "commandline-argfile-missing.args:[^(]*" -> "commandline-argfile-missing.args: $$FILE_MISSING "
6 // compile-flags: --cfg cmdline_set @{{src-base}}/commandline-argfile-missing.args
7
8 #[cfg(not(cmdline_set))]
9 compile_error!("cmdline_set not set");
10
11 #[cfg(not(unbroken))]
12 compile_error!("unbroken not set");
13
14 fn main() {
15 }