aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0098_where_clause.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-08 17:26:38 +0100
committerAleksey Kladov <[email protected]>2018-08-08 17:31:44 +0100
commiteb8e9043e227682e6e7db2711091dc74d847e766 (patch)
tree5174136ad99ea4bd37f01c4c095c2976c6741403 /tests/data/parser/inline/0098_where_clause.rs
parent8f21afacfc981e93f2ad78cd340e9b6c0e821d92 (diff)
Where clauses
Diffstat (limited to 'tests/data/parser/inline/0098_where_clause.rs')
-rw-r--r--tests/data/parser/inline/0098_where_clause.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/data/parser/inline/0098_where_clause.rs b/tests/data/parser/inline/0098_where_clause.rs
new file mode 100644
index 000000000..592a005f9
--- /dev/null
+++ b/tests/data/parser/inline/0098_where_clause.rs
@@ -0,0 +1,6 @@
1fn foo()
2where
3 'a: 'b + 'c,
4 T: Clone + Copy + 'static,
5 Iterator::Item: 'a,
6{}