blob: bca7dbe9369cb3007db64ab296ac234ef1c3b5f6 [file] [log] [blame] [edit]
error: cannot find macro `printlx` in this scope
--> $DIR/macro-name-typo.rs:2:5
|
LL | printlx!("oh noes!");
| ^^^^^^^
|
--> $SRC_DIR/std/src/macros.rs:LL:COL
|
= note: similarly named macro `println` defined here
help: a macro with a similar name exists
|
LL - printlx!("oh noes!");
LL + println!("oh noes!");
|
error: aborting due to 1 previous error