ratchet down the recursion limit because, at least in my testing,

under some configurations this still causes a stack overflow and
hence a crash
This commit is contained in:
Niko Matsakis 2015-11-18 12:27:35 -05:00
parent 7c2ee5ed12
commit cfe4c3567a

View File

@ -10,6 +10,8 @@
#![allow(unused)]
#![recursion_limit = "32"]
#[derive(Clone)]
struct A (B);