blob: 16a4ede0c0b54f1ca0a1e111c2cbb664dcd41848 [file] [log] [blame] [edit]
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
|
LL - #[marco_use] // typo
LL + #[macro_use] // typo
|
error: aborting due to 2 previous errors