diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-18 12:25:44 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-18 12:25:44 +0000 |
commit | d3da042a6297b60799f6f97dd4d58d559a9b5838 (patch) | |
tree | 267e3fd810b5e434a9156f7408705980ea22790e /crates/hir_ty | |
parent | 80d497e5415e9826cfe0596b6be88c6733f56cb5 (diff) | |
parent | 13f30e9ef5f3d78fdaef450e935782a2edd9f88e (diff) |
Merge #8082
8082: Proper handle inner recursive macro rules cases r=edwin0cheng a=edwin0cheng
Fixes #7645
cc @jonas-schievink
bors r+
Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/hir_ty')
-rw-r--r-- | crates/hir_ty/src/tests/macros.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/crates/hir_ty/src/tests/macros.rs b/crates/hir_ty/src/tests/macros.rs index af4f8bb11..c1e605740 100644 --- a/crates/hir_ty/src/tests/macros.rs +++ b/crates/hir_ty/src/tests/macros.rs | |||
@@ -232,6 +232,28 @@ fn expr_macro_expanded_in_stmts() { | |||
232 | } | 232 | } |
233 | 233 | ||
234 | #[test] | 234 | #[test] |
235 | fn recursive_inner_item_macro_rules() { | ||
236 | check_infer( | ||
237 | r#" | ||
238 | macro_rules! mac { | ||
239 | () => { mac!($)}; | ||
240 | ($x:tt) => { macro_rules! blub { () => { 1 }; } }; | ||
241 | } | ||
242 | fn foo() { | ||
243 | mac!(); | ||
244 | let a = blub!(); | ||
245 | } | ||
246 | "#, | ||
247 | expect![[r#" | ||
248 | !0..1 '1': i32 | ||
249 | !0..7 'mac!($)': {unknown} | ||
250 | 107..143 '{ ...!(); }': () | ||
251 | 129..130 'a': i32 | ||
252 | "#]], | ||
253 | ); | ||
254 | } | ||
255 | |||
256 | #[test] | ||
235 | fn infer_type_value_macro_having_same_name() { | 257 | fn infer_type_value_macro_having_same_name() { |
236 | check_infer( | 258 | check_infer( |
237 | r#" | 259 | r#" |