]> git.proxmox.com Git - rustc.git/blame - src/test/ui/macros/unknown-builtin.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / macros / unknown-builtin.stderr
CommitLineData
416331ca
XL
1error: cannot find a built-in macro with name `unknown`
2 --> $DIR/unknown-builtin.rs:6:1
3 |
4LL | macro_rules! unknown { () => () }
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
1b1a35ee 7error[E0773]: attempted to define built-in macro more than once
3dfed10e 8 --> $SRC_DIR/core/src/macros/mod.rs:LL:COL
416331ca 9 |
064997fb
FG
10LL | macro_rules! line {
11 | ^^^^^^^^^^^^^^^^^
1b1a35ee
XL
12 |
13note: previously defined here
14 --> $DIR/unknown-builtin.rs:9:1
15 |
16LL | macro_rules! line { () => () }
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
416331ca
XL
18
19error: aborting due to 2 previous errors
20
1b1a35ee 21For more information about this error, try `rustc --explain E0773`.