about summary refs log tree commit diff
path: root/src/test/ui/macros/unknown-builtin.stderr
blob: 665e92f2424182d1f23b95413e7efba9b2a6e8ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: cannot find a built-in macro with name `unknown`
  --> $DIR/unknown-builtin.rs:6:1
   |
LL | macro_rules! unknown { () => () }
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: cannot find a built-in macro with name `line`
  --> $SRC_DIR/libcore/macros/mod.rs:LL:COL
   |
LL | /     macro_rules! line {
LL | |         () => {
LL | |             /* compiler built-in */
LL | |         };
LL | |     }
   | |_____^

error: aborting due to 2 previous errors