summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross-crate/issue-64872/auxiliary/d_chain_of_rlibs_and_dylibs.rs
blob: 8d73f9b666f1e117273d00498134459a918c6749 (plain)
1
2
3
4
5
6
7
8
9
// compile-flags: -C debuginfo=2 -C prefer-dynamic

#![crate_type="rlib"]

extern crate c_another_vtable_for_obj;

pub fn chain() {
    c_another_vtable_for_obj::another_dyn_debug();
}