We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e352f7 commit 8ea0f18Copy full SHA for 8ea0f18
src/librustc_typeck/diagnostics.rs
@@ -1224,7 +1224,7 @@ fn main() {
1224
"##,
1225
1226
E0090: r##"
1227
-The wrong number of lifetimes were supplied. For example:
+You gave too few lifetime parameters. Example:
1228
1229
```compile_fail,E0090
1230
fn foo<'a: 'b, 'b: 'a>() {}
@@ -1233,6 +1233,16 @@ fn main() {
1233
foo::<'static>(); // error, expected 2 lifetime parameters
1234
}
1235
```
1236
+
1237
+Please check you give the right number of lifetime parameters. Example:
1238
1239
+```
1240
+fn foo<'a: 'b, 'b: 'a>() {}
1241
1242
+fn main() {
1243
+ foo::<'static, 'static>();
1244
+}
1245
1246
1247
1248
E0091: r##"
0 commit comments