summary refs log tree commit diff
path: root/src/test/run-pass/import4.rs
blob: 09c63c9c71548d0681dcf4e082da420f5dfadb0c (plain)
1
2
3
4
5
6
7
8
9

use zed::bar;

mod zed {
    #[legacy_exports];
    fn bar() { debug!("bar"); }
}

fn main() { let zed = 42; bar(); }