rust/src/test/ui/macros/unknown-builtin.stderr

19 lines
461 B
Plaintext
Raw Normal View History

error: cannot find a built-in macro with name `unknown`
--> $DIR/unknown-builtin.rs:11:1
|
LL | macro_rules! unknown { () => () }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: cannot find a built-in macro with name `line`
2020-02-10 16:37:12 +00:00
--> $SRC_DIR/libcore/macros/mod.rs:LL:COL
|
2020-02-10 16:37:12 +00:00
LL | / macro_rules! line {
LL | | () => {
LL | | /* compiler built-in */
LL | | };
LL | | }
| |_____^
error: aborting due to 2 previous errors