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 5ead973 commit 069aa30Copy full SHA for 069aa30
src/test/compile-fail/E0090.rs
@@ -0,0 +1,5 @@
1
+fn foo<'a: 'b, 'b: 'a>() {}
2
+fn main() {
3
+ foo::<'static>();//~ ERROR E0090
4
+ //~^ too few lifetime parameters
5
+}
0 commit comments