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