mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
485 B
Plaintext
19 lines
485 B
Plaintext
error: cannot find macro `m` in this scope
|
|
--> $DIR/macro-expansion-tests.rs:7:21
|
|
|
|
|
LL | fn g() -> i32 { m!() }
|
|
| ^
|
|
|
|
|
= help: have you added the `#[macro_use]` on the module/import?
|
|
|
|
error: cannot find macro `m` in this scope
|
|
--> $DIR/macro-expansion-tests.rs:15:21
|
|
|
|
|
LL | fn g() -> i32 { m!() }
|
|
| ^
|
|
|
|
|
= help: have you added the `#[macro_use]` on the module/import?
|
|
|
|
error: aborting due to 2 previous errors
|
|
|