rust/tests/ui/hygiene/globs.stderr

74 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-04-07 09:28:31 -05:00
error[E0425]: cannot find function `f` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/globs.rs:22:9
2018-04-07 09:28:31 -05:00
|
LL | pub fn g() {}
| ---------- similarly named function `g` defined here
...
2019-03-09 06:03:44 -06:00
LL | f();
| ^
|
help: a function with a similar name exists
|
LL | g();
| ~
help: consider importing this function
2018-04-07 09:28:31 -05:00
|
2023-03-17 21:18:39 -05:00
LL + use foo::f;
2018-04-07 09:28:31 -05:00
|
error[E0425]: cannot find function `g` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/globs.rs:15:5
2018-04-07 09:28:31 -05:00
|
LL | pub fn f() {}
| ---------- similarly named function `f` defined here
...
2019-03-09 06:03:44 -06:00
LL | g();
| ^
2018-04-07 09:28:31 -05:00
...
LL | / m! {
LL | | use bar::*;
LL | | g();
2019-03-09 06:03:44 -06:00
LL | | f();
2018-04-07 09:28:31 -05: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: a function with a similar name exists
|
LL | f();
| ~
help: consider importing this function
2018-04-07 09:28:31 -05:00
|
2023-03-17 21:18:39 -05:00
LL + use bar::g;
2018-04-07 09:28:31 -05:00
|
error[E0425]: cannot find function `f` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/globs.rs:61:12
|
LL | n!(f);
2021-10-14 13:28:28 -05:00
| ----- in this macro invocation
...
2019-03-09 06:03:44 -06:00
LL | n!(f);
| ^ not found in this scope
|
2023-01-16 21:09:49 -06:00
= help: 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 09:28:31 -05:00
error[E0425]: cannot find function `f` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/globs.rs:65:17
2018-04-07 09:28:31 -05:00
|
LL | n!(f);
2021-10-14 13:28:28 -05:00
| ----- in this macro invocation
2018-04-07 09:28:31 -05:00
...
2019-03-09 06:03:44 -06:00
LL | f
2018-04-07 09:28:31 -05:00
| ^ not found in this scope
|
2023-01-16 21:09:49 -06:00
= help: 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 09:28:31 -05:00
error: aborting due to 4 previous errors
2018-04-07 09:28:31 -05:00
For more information about this error, try `rustc --explain E0425`.