]> git.proxmox.com Git - rustc.git/blame - src/test/ui/commandline-argfile-missing.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / commandline-argfile-missing.rs
CommitLineData
e1599b0c
XL
1// Check to see if we can get parameters from an @argsfile file
2//
e1599b0c
XL
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))]
8compile_error!("cmdline_set not set");
9
10#[cfg(not(unbroken))]
11compile_error!("unbroken not set");
12
13fn main() {
14}