2018-03-16 16:53:40 +09:00
|
|
|
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)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-49074.rs:3:3
|
2018-03-16 16:53:40 +09:00
|
|
|
|
|
|
|
|
LL | #[marco_use] // typo
|
2019-01-25 14:29:47 -05:00
|
|
|
| ^^^^^^^^^ help: a built-in attribute with a similar name exists: `macro_use`
|
2018-03-16 16:53:40 +09:00
|
|
|
|
|
|
|
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
|
|
|
|
|
2018-12-16 20:23:27 +03:00
|
|
|
error: cannot find macro `bar!` in this scope
|
2018-12-27 03:07:00 +03:00
|
|
|
--> $DIR/issue-49074.rs:12:4
|
2018-12-16 20:23:27 +03:00
|
|
|
|
|
|
|
|
LL | bar!(); //~ ERROR cannot find macro `bar!` in this scope
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= help: have you added the `#[macro_use]` on the module/import?
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-03-16 16:53:40 +09:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|