]> git.proxmox.com Git - rustc.git/blame - src/test/ui/bad/bad-expr-path.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / test / ui / bad / bad-expr-path.rs
CommitLineData
223e47cc
LB
1mod m1 {}
2
dfeec247 3fn main(arguments: Vec<String>) { //~ ERROR `main` function has wrong type
32a655c1
SL
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}