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