rust/src/test/ui/macros/macro-outer-attributes.stderr
Esteban Küber 0baf61bfdb Increase spacing for suggestions in diagnostics
Make the spacing between the code snippet and verbose structured
suggestions consistent with note and help messages.
2019-10-24 12:26:01 -07:00

14 lines
376 B
Text

error[E0425]: cannot find function `bar` in module `a`
--> $DIR/macro-outer-attributes.rs:18:8
|
LL | a::bar();
| ^^^ not found in `a`
|
help: possible candidate is found in another module, you can import it into scope
|
LL | use b::bar;
|
error: aborting due to previous error
For more information about this error, try `rustc --explain E0425`.