We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e1b75b + ded6292 commit db08784Copy full SHA for db08784
src/librustc_error_codes/error_codes/E0283.md
@@ -1,7 +1,6 @@
1
-This error occurs when the compiler doesn't have enough information
2
-to unambiguously choose an implementation.
+An implementation cannot be chosen unambiguously because of lack of information.
3
4
-For example:
+Erroneous code example:
5
6
```compile_fail,E0283
7
trait Generator {
@@ -27,7 +26,9 @@ fn main() {
27
26
}
28
```
29
30
-To resolve this error use the concrete type:
+This error can be solved by adding type annotations that provide the missing
+information to the compiler. In this case, the solution is to use a concrete
31
+type:
32
33
34
0 commit comments