Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/body.rs')
| -rw-r--r-- | crates/hir_def/src/body.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir_def/src/body.rs b/crates/hir_def/src/body.rs index 0eff093beb..2634c52a0b 100644 --- a/crates/hir_def/src/body.rs +++ b/crates/hir_def/src/body.rs @@ -54,10 +54,10 @@ pub struct Expander { } #[cfg(test)] -const EXPANSION_RECURSION_LIMIT: Limit = Limit::new(32); +static EXPANSION_RECURSION_LIMIT: Limit = Limit::new(32); #[cfg(not(test))] -const EXPANSION_RECURSION_LIMIT: Limit = Limit::new(128); +static EXPANSION_RECURSION_LIMIT: Limit = Limit::new(128); impl CfgExpander { pub(crate) fn new( |