Files
rust/tests/run-make/export/compile-interface-error/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
221 B
Rust
Raw Normal View History

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");
}