]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/commandline-argfile-missing.rs
Rollup merge of #106714 - Ezrashaw:remove-e0490, r=davidtwco
[rust.git] / tests / rustdoc-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 }