summaryrefslogtreecommitdiffstats
path: root/tests/ui/dollar-crate/dollar-crate-is-keyword-2.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/dollar-crate/dollar-crate-is-keyword-2.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/dollar-crate/dollar-crate-is-keyword-2.stderr')
-rw-r--r--tests/ui/dollar-crate/dollar-crate-is-keyword-2.stderr37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/ui/dollar-crate/dollar-crate-is-keyword-2.stderr b/tests/ui/dollar-crate/dollar-crate-is-keyword-2.stderr
new file mode 100644
index 000000000..d46029710
--- /dev/null
+++ b/tests/ui/dollar-crate/dollar-crate-is-keyword-2.stderr
@@ -0,0 +1,37 @@
+error[E0433]: failed to resolve: `$crate` in paths can only be used in start position
+ --> $DIR/dollar-crate-is-keyword-2.rs:6:16
+ |
+LL | use a::$crate::b;
+ | ^^^^^^ `$crate` in paths can only be used in start position
+...
+LL | m!();
+ | ---- in this macro invocation
+ |
+ = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0432]: unresolved import `a::$crate`
+ --> $DIR/dollar-crate-is-keyword-2.rs:5:13
+ |
+LL | use a::$crate;
+ | ^^^^^^^^^ no `$crate` in `a`
+...
+LL | m!();
+ | ---- in this macro invocation
+ |
+ = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error[E0433]: failed to resolve: `$crate` in paths can only be used in start position
+ --> $DIR/dollar-crate-is-keyword-2.rs:7:21
+ |
+LL | type A = a::$crate;
+ | ^^^^^^ `$crate` in paths can only be used in start position
+...
+LL | m!();
+ | ---- in this macro invocation
+ |
+ = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0432, E0433.
+For more information about an error, try `rustc --explain E0432`.