rust/tests/ui/macros/macro-expansion-tests.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
485 B
Plaintext
Raw Normal View History

error: cannot find macro `m` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/macro-expansion-tests.rs:7:21
2018-08-08 12:28:26 +00:00
|
LL | fn g() -> i32 { m!() }
| ^
|
= help: have you added the `#[macro_use]` on the module/import?
error: cannot find macro `m` in this scope
2018-12-25 15:56:47 +00:00
--> $DIR/macro-expansion-tests.rs:15:21
2018-08-08 12:28:26 +00:00
|
LL | fn g() -> i32 { m!() }
| ^
|
= help: have you added the `#[macro_use]` on the module/import?
error: aborting due to 2 previous errors