From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../dollar-crate/dollar-crate-is-keyword-2.stderr | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 tests/ui/dollar-crate/dollar-crate-is-keyword-2.stderr (limited to 'tests/ui/dollar-crate/dollar-crate-is-keyword-2.stderr') 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`. -- cgit v1.2.3