]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/todo.txt
Rollup merge of #101389 - lukaslueg:rcgetmutdocs, r=m-ou-se
[rust.git] / src / tools / clippy / src / docs / todo.txt
1 ### What it does
2 Checks for usage of `todo!`.
3
4 ### Why is this bad?
5 This macro should not be present in production code
6
7 ### Example
8 ```
9 todo!();
10 ```