Skip to content

Commit 8ea0f18

Browse files
committed
E0090: Expand error message explanation
1 parent 8e352f7 commit 8ea0f18

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/librustc_typeck/diagnostics.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ fn main() {
12241224
"##,
12251225

12261226
E0090: r##"
1227-
The wrong number of lifetimes were supplied. For example:
1227+
You gave too few lifetime parameters. Example:
12281228
12291229
```compile_fail,E0090
12301230
fn foo<'a: 'b, 'b: 'a>() {}
@@ -1233,6 +1233,16 @@ fn main() {
12331233
foo::<'static>(); // error, expected 2 lifetime parameters
12341234
}
12351235
```
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+
```
12361246
"##,
12371247

12381248
E0091: r##"

0 commit comments

Comments
 (0)