about summary refs log tree commit diff
path: root/tests/run-make/dylib-chain/m2.rs
blob: 92950a9191544783ff5686e72b9c22d3a3ac0518 (plain)
1
2
3
4
5
6
#![crate_type = "dylib"]
extern crate m1;

pub fn m2() {
    m1::m1()
}