summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/where-clauses.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/where-clauses.rs')
-rw-r--r--src/test/pretty/where-clauses.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/pretty/where-clauses.rs b/src/test/pretty/where-clauses.rs
new file mode 100644
index 000000000..418379945
--- /dev/null
+++ b/src/test/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() {}