2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2019-10-30 16:32:40 +01:00
|
|
|
|
|
|
|
|
// 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`)
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ 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
|
2019-10-30 16:32:40 +01:00
|
|
|
|
|
|
|
|
extern crate d_chain_of_rlibs_and_dylibs;
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
|
d_chain_of_rlibs_and_dylibs::chain();
|
|
|
|
|
}
|