18 lines
527 B
Rust
Raw Normal View History

2024-06-13 16:19:59 -04:00
// If the static library provided is not valid (in this test,
// created as an empty file),
// rustc should print a normal error message and not throw
// an internal compiler error (ICE).
// See https://github.com/rust-lang/rust/pull/28673
2024-07-17 13:31:38 +00:00
use run_make_support::{rfs, rustc, static_lib_name};
2024-06-13 16:19:59 -04:00
fn main() {
rfs::create_file(static_lib_name("foo"));
2024-06-13 16:19:59 -04:00
rustc()
.arg("-")
.crate_type("rlib")
.arg("-lstatic=foo")
.run_fail()
.assert_stderr_contains("failed to add native library");
}