summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/disappearing-resolution.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/proc-macro/disappearing-resolution.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/proc-macro/disappearing-resolution.stderr')
-rw-r--r--src/test/ui/proc-macro/disappearing-resolution.stderr26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/proc-macro/disappearing-resolution.stderr b/src/test/ui/proc-macro/disappearing-resolution.stderr
deleted file mode 100644
index 5b969549a..000000000
--- a/src/test/ui/proc-macro/disappearing-resolution.stderr
+++ /dev/null
@@ -1,26 +0,0 @@
-error: cannot find attribute `empty_helper` in this scope
- --> $DIR/disappearing-resolution.rs:18:3
- |
-LL | #[empty_helper]
- | ^^^^^^^^^^^^
-
-error[E0603]: derive macro import `Empty` is private
- --> $DIR/disappearing-resolution.rs:11:8
- |
-LL | use m::Empty;
- | ^^^^^ private derive macro import
- |
-note: the derive macro import `Empty` is defined here...
- --> $DIR/disappearing-resolution.rs:9:9
- |
-LL | use test_macros::Empty;
- | ^^^^^^^^^^^^^^^^^^
-note: ...and refers to the derive macro `Empty` which is defined here
- --> $DIR/auxiliary/test-macros.rs:25:1
- |
-LL | pub fn empty_derive(_: TokenStream) -> TokenStream {
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ consider importing it directly
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0603`.