summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/import-glob-0.rs
blob: 37a0d15456c67a52b4119fc043f548d089e06787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use module_of_many_things::*;

mod module_of_many_things {
    pub fn f1() { println!("f1"); }
    pub fn f2() { println!("f2"); }
    fn f3() { println!("f3"); }
    pub fn f4() { println!("f4"); }
}


fn main() {
    f1();
    f2();
    f999(); //~ ERROR cannot find function `f999` in this scope
    f4();
}