Files
rust/tests/run-make/export/compile-interface-error/rmake.rs
2025-05-04 22:03:15 +03:00

10 lines
221 B
Rust

use run_make_support::rustc;
fn main() {
// Do not produce the interface, use the broken one.
rustc()
.input("app.rs")
.run_fail()
.assert_stderr_contains("couldn't compile interface");
}