summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/unknown-builtin.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/macros/unknown-builtin.stderr')
-rw-r--r--src/test/ui/macros/unknown-builtin.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/macros/unknown-builtin.stderr b/src/test/ui/macros/unknown-builtin.stderr
deleted file mode 100644
index 8f9dba165..000000000
--- a/src/test/ui/macros/unknown-builtin.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error: cannot find a built-in macro with name `unknown`
- --> $DIR/unknown-builtin.rs:6:1
- |
-LL | macro_rules! unknown { () => () }
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error[E0773]: attempted to define built-in macro more than once
- --> $SRC_DIR/core/src/macros/mod.rs:LL:COL
- |
-LL | macro_rules! line {
- | ^^^^^^^^^^^^^^^^^
- |
-note: previously defined here
- --> $DIR/unknown-builtin.rs:9:1
- |
-LL | macro_rules! line { () => () }
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0773`.