Move complex inline test to own file

This commit is contained in:
Matthew Jasper 2020-06-11 18:14:57 +01:00
parent 506e1ddbfa
commit 879693e63c
7 changed files with 670 additions and 372 deletions

View file

@ -195,22 +195,6 @@ fn where_predicate(p: &mut Parser) {
// where
// for<'a> F: Fn(&'a str)
// { }
// fn for_ref<F>()
// where
// for<'a> &'a F: Debug
// { }
// fn for_parens<F>()
// where
// for<'a> (&'a F): Fn(&'a str)
// { }
// fn for_slice<F>()
// where
// for<'a> [&'a F]: Eq
// { }
// fn for_qpath<T>(_t: &T)
// where
// for<'a> <&'a T as Baz>::Foo: Iterator
// { }
if p.at(T![for]) {
types::for_binder(p);
}