]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/macro-outer-attributes.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / macros / macro-outer-attributes.stderr
1 error[E0425]: cannot find function `bar` in module `a`
2 --> $DIR/macro-outer-attributes.rs:18:8
3 |
4 LL | a::bar();
5 | ^^^ not found in `a`
6 |
7 help: consider importing this function
8 |
9 LL | use b::bar;
10 |
11 help: if you import `bar`, refer to it directly
12 |
13 LL - a::bar();
14 LL + bar();
15 |
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0425`.