summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/macro-expansion-tests.stderr
blob: 8b3f7ca88171c465042ec5e90103abd0a0414585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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