summaryrefslogtreecommitdiffstats
path: root/tests/ui/hygiene/rustc-macro-transparency.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 /tests/ui/hygiene/rustc-macro-transparency.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 'tests/ui/hygiene/rustc-macro-transparency.stderr')
-rw-r--r--tests/ui/hygiene/rustc-macro-transparency.stderr28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/ui/hygiene/rustc-macro-transparency.stderr b/tests/ui/hygiene/rustc-macro-transparency.stderr
new file mode 100644
index 000000000..1d2a1e124
--- /dev/null
+++ b/tests/ui/hygiene/rustc-macro-transparency.stderr
@@ -0,0 +1,28 @@
+error[E0425]: cannot find value `Opaque` in this scope
+ --> $DIR/rustc-macro-transparency.rs:26:5
+ |
+LL | Opaque;
+ | ^^^^^^ not found in this scope
+
+error[E0423]: expected value, found macro `semitransparent`
+ --> $DIR/rustc-macro-transparency.rs:29:5
+ |
+LL | struct SemiTransparent;
+ | ----------------------- similarly named unit struct `SemiTransparent` defined here
+...
+LL | semitransparent;
+ | ^^^^^^^^^^^^^^^
+ | |
+ | not a value
+ | help: a unit struct with a similar name exists: `SemiTransparent`
+
+error[E0423]: expected value, found macro `opaque`
+ --> $DIR/rustc-macro-transparency.rs:30:5
+ |
+LL | opaque;
+ | ^^^^^^ not a value
+
+error: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0423, E0425.
+For more information about an error, try `rustc --explain E0423`.