diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-01-10 16:31:02 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-10 16:31:02 +0000 |
commit | 9a44f627be0b3c49184e3ad594849f9b5ed78daa (patch) | |
tree | fc08dd836376b0f8d3223e0098388c293f58c40e /crates/ra_hir_ty | |
parent | 2068e48c698b93974d1e3261940dbea121ef16c3 (diff) | |
parent | ca62d98781f13b6fb82c4d19269ee255208fb3d4 (diff) |
Merge #2785
2785: Expand PAREN_EXPR as expression r=matklad a=edwin0cheng
Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/ra_hir_ty')
-rw-r--r-- | crates/ra_hir_ty/src/tests/regression.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/ra_hir_ty/src/tests/regression.rs b/crates/ra_hir_ty/src/tests/regression.rs index 13c5f62e4..6c5d39549 100644 --- a/crates/ra_hir_ty/src/tests/regression.rs +++ b/crates/ra_hir_ty/src/tests/regression.rs | |||
@@ -310,6 +310,23 @@ fn test<R>(query_response: Canonical<QueryResponse<R>>) { | |||
310 | } | 310 | } |
311 | 311 | ||
312 | #[test] | 312 | #[test] |
313 | fn infer_paren_macro_call() { | ||
314 | assert_snapshot!( | ||
315 | infer(r#" | ||
316 | macro_rules! bar { () => {0u32} } | ||
317 | fn test() { | ||
318 | let a = (bar!()); | ||
319 | } | ||
320 | "#), | ||
321 | @r###" | ||
322 | ![0; 4) '0u32': u32 | ||
323 | [45; 70) '{ ...()); }': () | ||
324 | [55; 56) 'a': u32 | ||
325 | "### | ||
326 | ); | ||
327 | } | ||
328 | |||
329 | #[test] | ||
313 | fn bug_1030() { | 330 | fn bug_1030() { |
314 | assert_snapshot!(infer(r#" | 331 | assert_snapshot!(infer(r#" |
315 | struct HashSet<T, H>; | 332 | struct HashSet<T, H>; |