rust/src/test/ui/macros/macro-name-typo.stderr

14 lines
377 B
Plaintext
Raw Normal View History

error: cannot find macro `printlx` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/macro-name-typo.rs:2:5
|
LL | printlx!("oh noes!");
| ^^^^^^^ help: a macro with a similar name exists: `println`
|
::: $SRC_DIR/libstd/macros.rs:LL:COL
|
LL | macro_rules! println {
| -------------------- similarly named macro `println` defined here
2017-05-16 08:12:24 -05:00
error: aborting due to previous error