blob: 5c33ae99734e827ada9d56ac7e18a173ae597812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error: cannot find macro `kl!` in this scope
--> $DIR/macro_undefined.rs:22:5
|
22 | kl!();
| ^^
|
= help: have you added the `#[macro_use]` on the module/import?
error: cannot find macro `k!` in this scope
--> $DIR/macro_undefined.rs:21:5
|
21 | k!();
| ^ help: you could try the macro: `kl!`
error: aborting due to 2 previous errors
|