]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-49074.stderr
c9984ea2e9a8a97e14487cb23032ba9d645fa0e4
[rust.git] / src / test / ui / issues / issue-49074.stderr
1 error: cannot find macro `bar!` in this scope
2   --> $DIR/issue-49074.rs:22:4
3    |
4 LL |    bar!();
5    |    ^^^
6    |
7    = help: have you added the `#[macro_use]` on the module/import?
8
9 error[E0658]: The attribute `marco_use` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
10   --> $DIR/issue-49074.rs:13:1
11    |
12 LL | #[marco_use] // typo
13    | ^^^^^^^^^^^^
14    |
15    = help: add #![feature(custom_attribute)] to the crate attributes to enable
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0658`.