]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/unimplemented.txt
Auto merge of #101615 - compiler-errors:rpitit-perf, r=oli-obk
[rust.git] / src / tools / clippy / src / docs / unimplemented.txt
1 ### What it does
2 Checks for usage of `unimplemented!`.
3
4 ### Why is this bad?
5 This macro should not be present in production code
6
7 ### Example
8 ```
9 unimplemented!();
10 ```