]> git.proxmox.com Git - rustc.git/blame - src/test/ui/commandline-argfile.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / commandline-argfile.rs
CommitLineData
e1599b0c
XL
1// Check to see if we can get parameters from an @argsfile file
2//
3// build-pass
4// compile-flags: --cfg cmdline_set @{{src-base}}/commandline-argfile.args
5
6#[cfg(not(cmdline_set))]
7compile_error!("cmdline_set not set");
8
9#[cfg(not(unbroken))]
10compile_error!("unbroken not set");
11
12fn main() {
13}