// When provided standard input piped directly into rustc, this test checks that the compilation // completes successfully and that the output can be executed. // // See . //@ ignore-cross-compile use run_make_support::{run, rustc}; fn main() { rustc().arg("-").stdin("fn main() {}").run(); run("rust_out"); }