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.
where T:
1 parent 3bebee7 commit 1b8ca54Copy full SHA for 1b8ca54
src/test/pretty/where-clauses.rs
@@ -2,4 +2,7 @@
2
3
fn f<'a, 'b, T>(t: T) -> isize where T: 'a, 'a: 'b, T: Eq { 0 }
4
5
+// This is legal syntax, sometimes generated by macros. `where T: $($bound+)*`
6
+fn zero_bounds<'a, T>() where 'a:, T: {}
7
+
8
fn main() {}
0 commit comments