mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
8 lines
221 B
Rust
8 lines
221 B
Rust
use run_make_support::{diff, rustc};
|
|
|
|
fn main() {
|
|
let output = rustc().print("crate-name").run_fail_assert_exit_code(1);
|
|
|
|
diff().expected_file("no-input-file.stderr").actual_text("output", output.stderr).run();
|
|
}
|