summaryrefslogtreecommitdiffstats
path: root/tests/ui/autoref-autoderef/deref-ambiguity-becomes-nonambiguous.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/autoref-autoderef/deref-ambiguity-becomes-nonambiguous.stderr')
-rw-r--r--tests/ui/autoref-autoderef/deref-ambiguity-becomes-nonambiguous.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/autoref-autoderef/deref-ambiguity-becomes-nonambiguous.stderr b/tests/ui/autoref-autoderef/deref-ambiguity-becomes-nonambiguous.stderr
new file mode 100644
index 000000000..06a7e9085
--- /dev/null
+++ b/tests/ui/autoref-autoderef/deref-ambiguity-becomes-nonambiguous.stderr
@@ -0,0 +1,17 @@
+error[E0282]: type annotations needed for `Value<Rc<_>>`
+ --> $DIR/deref-ambiguity-becomes-nonambiguous.rs:31:9
+ |
+LL | let var_fn = Value::wrap();
+ | ^^^^^^
+...
+LL | let _ = var_fn.clone();
+ | ----- type must be known at this point
+ |
+help: consider giving `var_fn` an explicit type, where the placeholders `_` are specified
+ |
+LL | let var_fn: Value<Rc<_>> = Value::wrap();
+ | ++++++++++++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0282`.