]> git.lizzy.rs Git - rust.git/blob - src/docs/unimplemented.txt
Auto merge of #9421 - xphoniex:fix-#9420, r=giraffate
[rust.git] / 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 ```