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