]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-ui/commandline-argfile.rs
Merge commit 'b7f3f7f6082679da2da9a0b3faf1b5adef3afd3b' into clippyup
[rust.git] / src / test / rustdoc-ui / commandline-argfile.rs
1 // Check to see if we can get parameters from an @argsfile file
2 //
3 // check-pass
4 // compile-flags: --cfg cmdline_set @{{src-base}}/commandline-argfile.args
5
6 #[cfg(not(cmdline_set))]
7 compile_error!("cmdline_set not set");
8
9 #[cfg(not(unbroken))]
10 compile_error!("unbroken not set");
11
12 fn main() {
13 }