From 8eb2b75a110ca716ac51018f11df9a00599c670c Mon Sep 17 00:00:00 2001 From: lcnr Date: Thu, 20 Oct 2022 18:03:28 +0200 Subject: [PATCH] add increased recursion limit --- compiler/rustc_hir_typeck/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/rustc_hir_typeck/src/lib.rs b/compiler/rustc_hir_typeck/src/lib.rs index cbff5e8820489..e862d577573b4 100644 --- a/compiler/rustc_hir_typeck/src/lib.rs +++ b/compiler/rustc_hir_typeck/src/lib.rs @@ -6,6 +6,7 @@ #![feature(control_flow_enum)] #![feature(drain_filter)] #![allow(rustc::potential_query_instability)] +#![recursion_limit = "256"] #[macro_use] extern crate tracing;