]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-outer-attributes.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.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`.