]> git.lizzy.rs Git - rust.git/blob - tests/ui/cross-crate/issue-64872/auxiliary/d_chain_of_rlibs_and_dylibs.rs
Rollup merge of #106618 - jmillikin:os-net-rustdoc-wasm32, r=JohnTitor
[rust.git] / tests / ui / cross-crate / issue-64872 / auxiliary / d_chain_of_rlibs_and_dylibs.rs
1 // compile-flags: -C debuginfo=2 -C prefer-dynamic
2
3 #![crate_type="rlib"]
4
5 extern crate c_another_vtable_for_obj;
6
7 pub fn chain() {
8     c_another_vtable_for_obj::another_dyn_debug();
9 }