]> git.proxmox.com Git - rustc.git/blob - tests/ui/resolve/bad-expr-path.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / resolve / bad-expr-path.rs
1 mod m1 {}
2
3 fn main(arguments: Vec<String>) { //~ ERROR `main` function has wrong type
4 log(debug, m1::arguments);
5 //~^ ERROR cannot find function `log` in this scope
6 //~| ERROR cannot find value `debug` in this scope
7 //~| ERROR cannot find value `arguments` in module `m1`
8 }