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 ca97e84 commit 27764c4Copy full SHA for 27764c4
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