2019-09-15 10:12:14 +00:00
|
|
|
error: cannot find macro `printlx` in this scope
|
2020-04-01 01:10:13 +00:00
|
|
|
--> $DIR/macro-name-typo.rs:2:5
|
2017-05-16 13:11:34 +00:00
|
|
|
|
|
2019-10-28 21:48:49 +00:00
|
|
|
LL | printlx!("oh noes!");
|
|
|
|
| ^^^^^^^ help: a macro with a similar name exists: `println`
|
2019-10-15 00:20:50 +00:00
|
|
|
|
|
2020-06-12 02:31:49 +00:00
|
|
|
::: $SRC_DIR/std/src/macros.rs:LL:COL
|
2019-10-15 00:20:50 +00:00
|
|
|
|
|
2019-10-28 21:48:49 +00:00
|
|
|
LL | macro_rules! println {
|
|
|
|
| -------------------- similarly named macro `println` defined here
|
2017-05-16 13:11:34 +00:00
|
|
|
|
2017-05-16 13:12:24 +00:00
|
|
|
error: aborting due to previous error
|
2017-05-16 13:11:34 +00:00
|
|
|
|