diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-03-29 08:37:47 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-04-04 09:44:45 +0000 |
| commit | b08a557f80865433d39d47934904a81b8ab3d720 (patch) | |
| tree | f4cdac16cdb87e09fd3d5b1c9eb4935ea455f357 /compiler/rustc_builtin_macros/src/global_allocator.rs | |
| parent | 35d06f9c747bc791d7d6902248d851da98616a57 (diff) | |
| download | rust-b08a557f80865433d39d47934904a81b8ab3d720.tar.gz rust-b08a557f80865433d39d47934904a81b8ab3d720.zip | |
rust-analyzer guided enum variant structification
Diffstat (limited to 'compiler/rustc_builtin_macros/src/global_allocator.rs')
| -rw-r--r-- | compiler/rustc_builtin_macros/src/global_allocator.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_builtin_macros/src/global_allocator.rs b/compiler/rustc_builtin_macros/src/global_allocator.rs index 41b51bae736..f817b20daf4 100644 --- a/compiler/rustc_builtin_macros/src/global_allocator.rs +++ b/compiler/rustc_builtin_macros/src/global_allocator.rs @@ -25,12 +25,12 @@ pub fn expand( // FIXME - if we get deref patterns, use them to reduce duplication here let (item, is_stmt, ty_span) = if let Annotatable::Item(item) = &item - && let ItemKind::Static(ty, ..) = &item.kind + && let ItemKind::Static(ast::Static(ty, ..)) = &item.kind { (item, false, ecx.with_def_site_ctxt(ty.span)) } else if let Annotatable::Stmt(stmt) = &item && let StmtKind::Item(item) = &stmt.kind - && let ItemKind::Static(ty, ..) = &item.kind + && let ItemKind::Static(ast::Static(ty, ..)) = &item.kind { (item, true, ecx.with_def_site_ctxt(ty.span)) } else { |
