aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-02-07 13:13:36 +0000
committerGitHub <[email protected]>2020-02-07 13:13:36 +0000
commit6d6a995e09c74a8b1075842fb3cd7232354389ae (patch)
treee445538d8619848896b69cfae6a80672b1faceb1 /crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs
parent4d0d113c7d17483f3a6e0d09db7cc0cb5ed145c4 (diff)
parent90ff2be4e820601a1d16ba5716916f7424dfa10d (diff)
Merge #3040
3040: Rework value parameter parsing r=matklad a=tobz1000 Fixes #2847. - `Fn__(...)` parameters with idents/patterns no longer parse - Trait function parameters with arbitrary patterns parse - Trait function parameters without idents/patterns no longer parse - `fn(...)` parameters no longer parse with patterns other than a single ident __Question__: The pre-existing test `param_list_opt_patterns` has been kept as-is, although the name no longer makes sense (it's testing `Fn__(...)` params, which aren't allowed patterns any more). What would be best to do about this? Co-authored-by: Toby Dimmick <[email protected]>
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs b/crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs
new file mode 100644
index 000000000..80a1701fd
--- /dev/null
+++ b/crates/ra_syntax/test_data/parser/inline/ok/0154_fn_pointer_param_ident_path.rs
@@ -0,0 +1,2 @@
1type Foo = fn(Bar::Baz);
2type Qux = fn(baz: Bar::Baz);