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

import zed::bar;

mod zed {
    fn bar() { #debug("bar"); }
}

fn main(args: [str]) { let zed = 42; bar(); }