summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/panic.txt
blob: f9bdc6e87ccf944a14773aa695e3660c3e629cb2 (plain)
1
2
3
4
5
6
7
8
9
10
### What it does
Checks for usage of `panic!`.

### Why is this bad?
`panic!` will stop the execution of the executable

### Example
```
panic!("even with a good reason");
```