summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross-crate/issue-64872/issue-64872.rs
blob: 20fe2053cc7c319efd075da973c674fc7c471f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass

// note that these aux-build directives must be in this order: the
// later crates depend on the earlier ones. (The particular bug that
// is being exercised here used to exhibit itself during the build of
// `chain_of_rlibs_and_dylibs.dylib`)

// aux-build:a_def_obj.rs
// aux-build:b_reexport_obj.rs
// aux-build:c_another_vtable_for_obj.rs
// aux-build:d_chain_of_rlibs_and_dylibs.rs

extern crate d_chain_of_rlibs_and_dylibs;

pub fn main() {
    d_chain_of_rlibs_and_dylibs::chain();
}