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
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2021-09-10 23:15:40 +00:00
|
|
|
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
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-06-13 17:58:46 +00:00
|
|
|
help: consider importing this function
|
2018-04-07 14:28:31 +00:00
|
|
|
|
|
|
|
|
LL | use bar::g;
|
|
|
|
|
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
error[E0425]: cannot find function `f` in this scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/globs.rs:61:12
|
2018-07-07 20:07:06 +00:00
|
|
|
|
|
|
|
|
LL | n!(f);
|
|
|
|
| ------ in this macro invocation
|
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | n!(f);
|
2018-07-07 20:07:06 +00:00
|
|
|
| ^ not found in this scope
|
2020-01-22 07:01:21 +00:00
|
|
|
|
|
2021-09-10 23:15:40 +00:00
|
|
|
= note: consider importing this function:
|
2020-01-22 07:01:21 +00:00
|
|
|
foo::f
|
2021-02-13 19:52:25 +00:00
|
|
|
= 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
|
2020-01-22 07:01:21 +00:00
|
|
|
|
|
2021-09-10 23:15:40 +00:00
|
|
|
= note: consider importing this function:
|
2020-01-22 07:01:21 +00:00
|
|
|
foo::f
|
2021-02-13 19:52:25 +00:00
|
|
|
= 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
|
|
|
|
2018-07-07 20:07:06 +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`.
|