]> git.proxmox.com Git - rustc.git/blob - tests/run-make/dylib-chain/m3.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / run-make / dylib-chain / m3.rs
1 #![crate_type = "dylib"]
2 extern crate m2;
3
4 pub fn m3() { m2::m2() }