]> git.proxmox.com Git - rustc.git/blob - src/test/ui/macros/macro-outer-attributes.stderr
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / ui / macros / macro-outer-attributes.stderr
1 error[E0425]: cannot find function `bar` in module `a`
2 --> $DIR/macro-outer-attributes.rs:28:8
3 |
4 LL | a::bar(); //~ ERROR cannot find function `bar` in module `a`
5 | ^^^ not found in `a`
6 help: possible candidate is found in another module, you can import it into scope
7 |
8 LL | use b::bar;
9 |
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0425`.