2021-08-22 07:06:45 -05:00
|
|
|
error: cannot find macro `bla` in this scope
|
2021-08-22 08:05:35 -05:00
|
|
|
--> $DIR/issue-88228.rs:20:5
|
2021-08-22 07:06:45 -05:00
|
|
|
|
|
|
|
|
LL | bla!();
|
|
|
|
| ^^^
|
|
|
|
|
|
2023-06-16 14:44:06 -05:00
|
|
|
help: consider importing this macro through its public re-export
|
2023-06-09 11:06:34 -05:00
|
|
|
|
|
|
|
|
LL + use crate::hey::bla;
|
|
|
|
|
|
2021-08-22 07:06:45 -05:00
|
|
|
|
|
|
|
error: cannot find derive macro `println` in this scope
|
|
|
|
--> $DIR/issue-88228.rs:14:10
|
|
|
|
|
|
|
|
|
LL | #[derive(println)]
|
|
|
|
| ^^^^^^^
|
2021-08-22 08:05:35 -05:00
|
|
|
|
|
|
|
|
= note: `println` is in scope, but it is a function-like macro
|
2021-08-22 07:06:45 -05:00
|
|
|
|
|
|
|
error: cannot find derive macro `Bla` in this scope
|
2023-06-09 11:06:34 -05:00
|
|
|
--> $DIR/issue-88228.rs:10:10
|
2021-08-22 07:06:45 -05:00
|
|
|
|
|
|
|
|
LL | #[derive(Bla)]
|
|
|
|
| ^^^
|
|
|
|
|
|
2023-06-16 14:44:06 -05:00
|
|
|
help: consider importing this derive macro through its public re-export
|
2023-06-09 11:06:34 -05:00
|
|
|
|
|
|
|
|
LL + use crate::hey::Bla;
|
|
|
|
|
|
2021-08-22 07:06:45 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|