diff options
Diffstat (limited to 'tests/pretty/where-clauses.rs')
-rw-r--r-- | tests/pretty/where-clauses.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/pretty/where-clauses.rs b/tests/pretty/where-clauses.rs new file mode 100644 index 000000000..418379945 --- /dev/null +++ b/tests/pretty/where-clauses.rs @@ -0,0 +1,8 @@ +// pp-exact + +fn f<'a, 'b, T>(t: T) -> isize where T: 'a, 'a: 'b, T: Eq { 0 } + +// This is legal syntax, sometimes generated by macros. `where T: $($bound+)*` +fn zero_bounds<'a, T>() where 'a:, T: {} + +fn main() {} |