blob: bbfeb4ea9483a764841fbc788d22d981bc570933 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error: cannot find macro `bar` in this scope
--> $DIR/issue-49074.rs:12:4
|
LL | bar!();
| ^^^
|
= help: have you added the `#[macro_use]` on the module/import?
error: cannot find attribute `marco_use` in this scope
--> $DIR/issue-49074.rs:3:3
|
LL | #[marco_use] // typo
| ^^^^^^^^^ help: a built-in attribute with a similar name exists: `macro_use`
error: aborting due to 2 previous errors
|