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

14 lines
378 B
Plaintext
Raw Normal View History

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