about summary refs log tree commit diff
path: root/tests/run-make/export/disambiguator/rmake.rs
blob: afbe7f2cdbc3b4c7425c29b963b5407c0c9bf4b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ ignore-cross-compile

// NOTE: `sdylib`'s platform support is basically just `dylib`'s platform support.
//@ needs-crate-type: dylib

use run_make_support::rustc;

fn main() {
    rustc().env("RUSTC_FORCE_RUSTC_VERSION", "1").input("libr.rs").run();
    rustc().env("RUSTC_FORCE_RUSTC_VERSION", "2").input("app.rs").run();
}