]> git.proxmox.com Git - rustc.git/blob - src/test/ui/imports/import-glob-0.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / imports / import-glob-0.rs
1 use module_of_many_things::*;
2
3 mod module_of_many_things {
4 pub fn f1() { println!("f1"); }
5 pub fn f2() { println!("f2"); }
6 fn f3() { println!("f3"); }
7 pub fn f4() { println!("f4"); }
8 }
9
10
11 fn main() {
12 f1();
13 f2();
14 f999(); //~ ERROR cannot find function `f999` in this scope
15 f4();
16 }