aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-11-05 08:24:02 +0000
committerAleksey Kladov <[email protected]>2018-11-05 08:24:08 +0000
commit9010cb98399dad6be845f9a143a466ca51b5798f (patch)
treeec8717d66869bcc12b3e70a2e71fb775db245d6a /crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs
parent576b9a0727ebbf00521bc1131cda808145696d06 (diff)
grammar: for predicates in where
closes #191
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs b/crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs
new file mode 100644
index 000000000..b448c6178
--- /dev/null
+++ b/crates/ra_syntax/tests/data/parser/inline/0113_where_pred_for.rs
@@ -0,0 +1,4 @@
1fn test<F>()
2where
3 for<'a> F: Fn(&'a str)
4{ }