From 6adfbaf2d38df2e39c94d07dd6563da92b732049 Mon Sep 17 00:00:00 2001 From: Ariel Ben-Yehuda Date: Tue, 23 May 2017 22:01:51 +0300 Subject: [PATCH] increase macro recursion limit --- src/librustc/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index d1d9dd4853d7..2a877aca53b7 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -47,7 +47,7 @@ #![cfg_attr(stage0, feature(staged_api))] #![cfg_attr(stage0, feature(loop_break_value))] -#![recursion_limit="128"] +#![recursion_limit="192"] extern crate arena; extern crate core;