2019-06-20 03:52:31 -05:00
|
|
|
error: cannot find a built-in macro with name `unknown`
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/unknown-builtin.rs:6:1
|
2019-06-20 03:52:31 -05:00
|
|
|
|
|
|
|
|
LL | macro_rules! unknown { () => () }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-08-30 23:04:01 -05:00
|
|
|
error[E0773]: attempted to define built-in macro more than once
|
2020-06-11 21:31:49 -05:00
|
|
|
--> $SRC_DIR/core/src/macros/mod.rs:LL:COL
|
2019-06-20 03:52:31 -05:00
|
|
|
|
|
2020-08-30 23:04:01 -05:00
|
|
|
note: previously defined here
|
|
|
|
--> $DIR/unknown-builtin.rs:9:1
|
|
|
|
|
|
|
|
|
LL | macro_rules! line { () => () }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-06-20 03:52:31 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2020-08-30 23:04:01 -05:00
|
|
|
For more information about this error, try `rustc --explain E0773`.
|