aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/ok/0065_plus_after_fn_trait_bound.rast
Commit message (Collapse)AuthorAgeFilesLines
* Rename TypeParamList -> GenericParamListAleksey Kladov2020-07-301-1/+1
|
* Rename FnDef -> FnAleksey Kladov2020-07-301-1/+1
|
* Update test dataAleksey Kladov2020-05-021-3/+2
|
* Convert tests to text-sizeAleksey Kladov2020-04-251-61/+61
|
* Parse correctly fn f<T>() where T: Fn() -> u8 + Send {}Luca Barbieri2020-04-091-0/+61
We used to parse it as T: Fn() -> (u8 + Send), which is different from the rustc behavior of T: (Fn() -> u8) + Send