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

14 lines
323 B
Text
Raw Normal View History

error: cannot find macro `k` in this scope
2018-12-25 08:56:47 -07:00
--> $DIR/macro_undefined.rs:11:5
|
LL | / macro_rules! kl {
LL | | () => ()
LL | | }
| |_____- similarly named macro `kl` defined here
...
LL | k!();
| ^ help: a macro with a similar name exists: `kl`
2018-05-14 03:22:52 +03:00
error: aborting due to previous error