From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/ufcs/ufcs-partially-resolved.stderr | 225 ++++++++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 src/test/ui/ufcs/ufcs-partially-resolved.stderr (limited to 'src/test/ui/ufcs/ufcs-partially-resolved.stderr') diff --git a/src/test/ui/ufcs/ufcs-partially-resolved.stderr b/src/test/ui/ufcs/ufcs-partially-resolved.stderr new file mode 100644 index 000000000..3950dc987 --- /dev/null +++ b/src/test/ui/ufcs/ufcs-partially-resolved.stderr @@ -0,0 +1,225 @@ +error[E0433]: failed to resolve: `Y` is a variant, not a module + --> $DIR/ufcs-partially-resolved.rs:48:22 + | +LL | let _: ::NN; + | ^ `Y` is a variant, not a module + +error[E0433]: failed to resolve: `Y` is a variant, not a module + --> $DIR/ufcs-partially-resolved.rs:50:15 + | +LL | ::NN; + | ^ `Y` is a variant, not a module + +error[E0576]: cannot find associated type `N` in trait `Tr` + --> $DIR/ufcs-partially-resolved.rs:19:24 + | +LL | type Y = u16; + | ------------- similarly named associated type `Y` defined here +... +LL | let _: ::N; + | ^ help: an associated type with a similar name exists: `Y` + +error[E0576]: cannot find associated type `N` in enum `E` + --> $DIR/ufcs-partially-resolved.rs:20:23 + | +LL | let _: ::N; + | ^ not found in `E` + +error[E0576]: cannot find associated type `N` in `A` + --> $DIR/ufcs-partially-resolved.rs:21:23 + | +LL | let _: ::N; + | ^ not found in `A` + +error[E0576]: cannot find method or associated constant `N` in trait `Tr` + --> $DIR/ufcs-partially-resolved.rs:22:17 + | +LL | fn Y() {} + | ------ similarly named associated function `Y` defined here +... +LL | ::N; + | ^ help: an associated function with a similar name exists: `Y` + +error[E0576]: cannot find method or associated constant `N` in enum `E` + --> $DIR/ufcs-partially-resolved.rs:23:16 + | +LL | ::N; + | ^ not found in `E` + +error[E0576]: cannot find method or associated constant `N` in `A` + --> $DIR/ufcs-partially-resolved.rs:24:16 + | +LL | ::N; + | ^ not found in `A` + +error[E0575]: expected associated type, found variant `E::Y` + --> $DIR/ufcs-partially-resolved.rs:26:12 + | +LL | let _: ::Y; + | ^^^^^^^^^^^^ not a associated type + +error[E0575]: expected method or associated constant, found unit variant `E::Y` + --> $DIR/ufcs-partially-resolved.rs:28:5 + | +LL | ::Y; + | ^^^^^^^^^^^^ not a method or associated constant + +error[E0576]: cannot find associated type `N` in trait `Tr` + --> $DIR/ufcs-partially-resolved.rs:30:24 + | +LL | type Y = u16; + | ------------- similarly named associated type `Y` defined here +... +LL | let _: ::N::NN; + | ^ help: an associated type with a similar name exists: `Y` + +error[E0576]: cannot find associated type `N` in enum `E` + --> $DIR/ufcs-partially-resolved.rs:31:23 + | +LL | let _: ::N::NN; + | ^ not found in `E` + +error[E0576]: cannot find associated type `N` in `A` + --> $DIR/ufcs-partially-resolved.rs:32:23 + | +LL | let _: ::N::NN; + | ^ not found in `A` + +error[E0576]: cannot find associated type `N` in trait `Tr` + --> $DIR/ufcs-partially-resolved.rs:33:17 + | +LL | type Y = u16; + | ------------- similarly named associated type `Y` defined here +... +LL | ::N::NN; + | ^ help: an associated type with a similar name exists: `Y` + +error[E0576]: cannot find associated type `N` in enum `E` + --> $DIR/ufcs-partially-resolved.rs:34:16 + | +LL | ::N::NN; + | ^ not found in `E` + +error[E0576]: cannot find associated type `N` in `A` + --> $DIR/ufcs-partially-resolved.rs:35:16 + | +LL | ::N::NN; + | ^ not found in `A` + +error[E0575]: expected associated type, found variant `E::Y` + --> $DIR/ufcs-partially-resolved.rs:37:12 + | +LL | let _: ::Y::NN; + | ^^^^^^^^^^^^^^^^ not a associated type + +error[E0575]: expected associated type, found variant `E::Y` + --> $DIR/ufcs-partially-resolved.rs:39:5 + | +LL | ::Y::NN; + | ^^^^^^^^^^^^^^^^ not a associated type + +error[E0576]: cannot find associated type `NN` in `Tr::N` + --> $DIR/ufcs-partially-resolved.rs:41:27 + | +LL | let _: ::NN; + | ^^ not found in `Tr::N` + +error[E0576]: cannot find associated type `NN` in `E::N` + --> $DIR/ufcs-partially-resolved.rs:42:26 + | +LL | let _: ::NN; + | ^^ not found in `E::N` + +error[E0576]: cannot find associated type `NN` in `A::N` + --> $DIR/ufcs-partially-resolved.rs:43:26 + | +LL | let _: ::NN; + | ^^ not found in `A::N` + +error[E0576]: cannot find method or associated constant `NN` in `Tr::N` + --> $DIR/ufcs-partially-resolved.rs:44:20 + | +LL | ::NN; + | ^^ not found in `Tr::N` + +error[E0576]: cannot find method or associated constant `NN` in `E::N` + --> $DIR/ufcs-partially-resolved.rs:45:19 + | +LL | ::NN; + | ^^ not found in `E::N` + +error[E0576]: cannot find method or associated constant `NN` in `A::N` + --> $DIR/ufcs-partially-resolved.rs:46:19 + | +LL | ::NN; + | ^^ not found in `A::N` + +error[E0576]: cannot find associated type `NN` in `Tr::Y` + --> $DIR/ufcs-partially-resolved.rs:47:27 + | +LL | let _: ::NN; + | ^^ not found in `Tr::Y` + +error[E0576]: cannot find method or associated constant `NN` in `Tr::Y` + --> $DIR/ufcs-partially-resolved.rs:49:20 + | +LL | ::NN; + | ^^ not found in `Tr::Y` + +error[E0575]: expected associated type, found associated function `Dr::Z` + --> $DIR/ufcs-partially-resolved.rs:52:12 + | +LL | type X = u16; + | ------------- similarly named associated type `X` defined here +... +LL | let _: ::Z; + | ^^^^^^^^^^^^- + | | + | help: an associated type with a similar name exists: `X` + +error[E0575]: expected method or associated constant, found associated type `Dr::X` + --> $DIR/ufcs-partially-resolved.rs:53:5 + | +LL | fn Z() {} + | ------ similarly named associated function `Z` defined here +... +LL | ::X; + | ^^^^^^^^^^^^- + | | + | help: an associated function with a similar name exists: `Z` + | + = note: can't use a type alias as a constructor + +error[E0575]: expected associated type, found associated function `Dr::Z` + --> $DIR/ufcs-partially-resolved.rs:54:12 + | +LL | type X = u16; + | ------------- similarly named associated type `X` defined here +... +LL | let _: ::Z::N; + | ^^^^^^^^^^^^-^^^ + | | + | help: an associated type with a similar name exists: `X` + +error[E0223]: ambiguous associated type + --> $DIR/ufcs-partially-resolved.rs:36:12 + | +LL | let _: ::Y::NN; + | ^^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `::NN` + +error[E0599]: no associated item named `NN` found for type `u16` in the current scope + --> $DIR/ufcs-partially-resolved.rs:38:20 + | +LL | ::Y::NN; + | ^^ associated item not found in `u16` + +error[E0599]: no associated item named `N` found for type `u16` in the current scope + --> $DIR/ufcs-partially-resolved.rs:55:20 + | +LL | ::X::N; + | ^ associated item not found in `u16` + +error: aborting due to 32 previous errors + +Some errors have detailed explanations: E0223, E0433, E0575, E0576, E0599. +For more information about an error, try `rustc --explain E0223`. -- cgit v1.2.3