summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/large_stack_arrays.txt
blob: 4a6f34785b0ef802748ff039f44578ff4dda2ea4 (plain)
1
2
3
4
5
6
7
8
9
10
### What it does
Checks for local arrays that may be too large.

### Why is this bad?
Large local arrays may cause stack overflow.

### Example
```
let a = [0u32; 1_000_000];
```