rust/src/test/ui/hygiene/globs.stderr

60 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-04-07 14:28:31 +00:00
error[E0425]: cannot find function `f` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/globs.rs:22:9
2018-04-07 14:28:31 +00:00
|
2019-03-09 12:03:44 +00:00
LL | f();
2018-04-07 14:28:31 +00:00
| ^ not found in this scope
|
help: consider importing this function
2018-04-07 14:28:31 +00:00
|
LL | use foo::f;
|
error[E0425]: cannot find function `g` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/globs.rs:15:5
2018-04-07 14:28:31 +00:00
|
2019-03-09 12:03:44 +00:00
LL | g();
2018-04-07 14:28:31 +00:00
| ^ not found in this scope
...
LL | / m! {
LL | | use bar::*;
LL | | g();
2019-03-09 12:03:44 +00:00
LL | | f();
2018-04-07 14:28:31 +00:00
LL | | }
| |_____- in this macro invocation
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
help: consider importing this function
2018-04-07 14:28:31 +00:00
|
LL | use bar::g;
|
error[E0425]: cannot find function `f` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/globs.rs:61:12
|
LL | n!(f);
| ------ in this macro invocation
...
2019-03-09 12:03:44 +00:00
LL | n!(f);
| ^ not found in this scope
|
= note: consider importing this function:
foo::f
= note: this error originates in the macro `n` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-04-07 14:28:31 +00:00
error[E0425]: cannot find function `f` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/globs.rs:65:17
2018-04-07 14:28:31 +00:00
|
LL | n!(f);
| ------ in this macro invocation
...
2019-03-09 12:03:44 +00:00
LL | f
2018-04-07 14:28:31 +00:00
| ^ not found in this scope
|
= note: consider importing this function:
foo::f
= note: this error originates in the macro `n` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-04-07 14:28:31 +00:00
error: aborting due to 4 previous errors
2018-04-07 14:28:31 +00:00
For more information about this error, try `rustc --explain E0425`.