rust/tests/ui/hygiene/globs.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.8 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
|
LL | pub fn g() {}
| ---------- similarly named function `g` defined here
...
2019-03-09 12:03:44 +00:00
LL | f();
| ^
|
help: a function with a similar name exists
|
LL | g();
| ~
help: consider importing this function
2018-04-07 14:28:31 +00:00
|
2023-03-18 02:18:39 +00:00
LL + use foo::f;
2018-04-07 14:28:31 +00:00
|
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
|
LL | pub fn f() {}
| ---------- similarly named function `f` defined here
...
2019-03-09 12:03:44 +00:00
LL | g();
| ^
2018-04-07 14:28:31 +00:00
...
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: a function with a similar name exists
|
LL | f();
| ~
help: consider importing this function
2018-04-07 14:28:31 +00:00
|
2023-03-18 02:18:39 +00:00
LL + use bar::g;
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:61:12
|
LL | n!(f);
2021-10-14 18:28:28 +00:00
| ----- in this macro invocation
...
2019-03-09 12:03:44 +00:00
LL | n!(f);
| ^ not found in this scope
|
2023-01-17 03:09:49 +00: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 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);
2021-10-14 18:28:28 +00:00
| ----- in this macro invocation
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
|
2023-01-17 03:09:49 +00: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 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`.