rust/tests/ui/macros/macro_undefined.stderr

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

12 lines
292 B
Plaintext
Raw Normal View History

error: cannot find macro `k` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/macro_undefined.rs:11:5
|
2020-03-21 09:03:58 -05:00
LL | macro_rules! kl {
| --------------- similarly named macro `kl` defined here
...
2020-03-21 09:03:58 -05:00
LL | k!();
| ^ help: a macro with a similar name exists: `kl`
2018-05-13 19:22:52 -05:00
error: aborting due to previous error