]> git.proxmox.com Git - rustc.git/blame - src/test/ui/commandline-argfile-missing.rs
New upstream version 1.49.0+dfsg1
[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//
3// ignore-tidy-linelength
e1599b0c
XL
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))]
9compile_error!("cmdline_set not set");
10
11#[cfg(not(unbroken))]
12compile_error!("unbroken not set");
13
14fn main() {
15}