rust/src/test/ui/macros/macro_undefined.stderr

17 lines
420 B
Plaintext
Raw Normal View History

error: cannot find macro `kl!` in this scope
--> $DIR/macro_undefined.rs:22:5
|
2017-11-20 06:13:27 -06:00
22 | kl!(); //~ ERROR cannot find
| ^^
|
= 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
|
2017-11-20 06:13:27 -06:00
21 | k!(); //~ ERROR cannot find
2017-05-16 08:12:24 -05:00
| ^ help: you could try the macro: `kl!`
2017-05-16 08:12:24 -05:00
error: aborting due to 2 previous errors