summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.stderr')
-rw-r--r--src/test/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.stderr34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/test/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.stderr b/src/test/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.stderr
new file mode 100644
index 000000000..57b2587ae
--- /dev/null
+++ b/src/test/ui/traits/do-not-mention-type-params-by-name-in-suggestion-issue-96292.stderr
@@ -0,0 +1,34 @@
+error[E0282]: type annotations needed
+ --> $DIR/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs:17:11
+ |
+LL | thing.method(42);
+ | ^^^^^^
+ |
+help: try using a fully qualified path to specify the expected types
+ |
+LL | <Thing<bool> as Method<T>>::method(thing, 42);
+ | +++++++++++++++++++++++++++++++++++ ~
+
+error[E0283]: type annotations needed
+ --> $DIR/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs:17:11
+ |
+LL | thing.method(42);
+ | ^^^^^^
+ |
+note: multiple `impl`s satisfying `Thing<bool>: Method<_>` found
+ --> $DIR/do-not-mention-type-params-by-name-in-suggestion-issue-96292.rs:7:1
+ |
+LL | impl<X> Method<i32> for Thing<X> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+...
+LL | impl<X> Method<u32> for Thing<X> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+help: try using a fully qualified path to specify the expected types
+ |
+LL | <Thing<bool> as Method<T>>::method(thing, 42);
+ | +++++++++++++++++++++++++++++++++++ ~
+
+error: aborting due to 2 previous errors
+
+Some errors have detailed explanations: E0282, E0283.
+For more information about an error, try `rustc --explain E0282`.