summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/import8.rs
blob: 87f0986bae436bd9431eca80cda59378ff9fed6a (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

use foo::x;
use foo::x as z;

mod foo {
    pub fn x(y: isize) { println!("{}", y); }
}

pub fn main() { x(10); z(10); }