1/// The maximum number of cases an enum can have before certain expensive
2/// analysis.
3///
4/// This constant acts as a safeguard against combinatorial explosion when analyzing
5/// enums with an exceptionally large number of cases.
6pub const MAX_ENUM_CASES_FOR_ANALYSIS: usize = 200;