We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e859498 commit 2f84173Copy full SHA for 2f84173
src/librustc_typeck/diagnostics.rs
@@ -1278,6 +1278,15 @@ fn main() {
1278
```
1279
"##,
1280
1281
+E0103: r##"
1282
+You hit this error because the compiler the compiler lacks information
1283
+to determine a type for this pattern binding.
1284
+
1285
+You have two possibilities to solve this situation:
1286
+ * Give an explicit definition of the expression
1287
+ * Infer the expression
1288
+"##,
1289
1290
E0106: r##"
1291
This error indicates that a lifetime is missing from a type. If it is an error
1292
inside a function signature, the problem may be with failing to adhere to the
@@ -2701,7 +2710,6 @@ register_diagnostics! {
2701
2710
E0085,
2702
2711
E0086,
2703
2712
E0090,
2704
- E0103,
2705
2713
E0104,
2706
2714
E0118,
2707
2715
E0122,
0 commit comments