about summary refs log tree commit diff
path: root/tests/run-make/export/compile-interface-error/rmake.rs
blob: 89474e9d4fbffb83e6a01e8ea99aab331299f190 (plain)
1
2
3
4
5
6
7
8
9
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");
}