Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
run-make
/
export
/
compile-interface-error
/
rmake.rs
blob: 89474e9d4fbffb83e6a01e8ea99aab331299f190 [
file
]
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"
);
}