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

use zed::bar;

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

fn main() { bar(); }