For example: ``` rust enum Test { A(i32), B([i32; 8000]), } ``` In this case it probably would be better to use `B(Box<[i32; 8000]>)`.