]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/src/docs/unreachable.txt
New upstream version 1.65.0+dfsg1
[rustc.git] / src / tools / clippy / src / docs / unreachable.txt
1 ### What it does
2 Checks for usage of `unreachable!`.
3
4 ### Why is this bad?
5 This macro can cause code to panic
6
7 ### Example
8 ```
9 unreachable!();
10 ```